@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Regular.ttf);
}

body {
    margin: 0;
    font-family: Roboto, serif;
    color: #353A4D;
    font-size: 16px;
    line-height: 20px;
}

.container {
    padding: calc((100vh - 634px) / 2) 0;
    background: url("./img/bg.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media (max-width: 1280px) {
    .container {
        padding: calc((100vh - 600px) / 2) 0;
    }
}

@media (max-width: 735px) {
    .container {
        padding: calc((100vh - 652px) / 2) 0;
    }
}

@media (max-width: 567px) {
    .container {
        padding: calc((100vh - 544px) / 2) 0;
    }
}

.block {
    max-width: 1270px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .block {
        max-width: 950px;
    }
}

@media (max-width: 1280px) {
    .block {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .block {
        max-width: calc(100% - 60px);
        padding: 0 30px;
    }
}


.logo {
    display: block;
    width: 156px;
    height: 40px;
    margin-bottom: 40px;
}

.text {
    font-size: 47px;
    line-height: 64px;
    color: #FFFFFF;
    font-weight: 300;
}

@media (max-width: 1280px) {
    .logo {
        margin-bottom: 30px;
    }

    .text {
        font-size: 39px;
        line-height: 52px;
    }
}

@media (max-width: 568px) {
    .text {
        font-size: 22px;
        line-height: 34px;
    }
}

.registration-container {
    max-width: 410px;
    width: 100%;
    padding: 30px;
    margin-top: 40px;
    background: #FFFFFF;
    box-shadow: 0 0 100px #000000;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .registration-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 568px) {
    .registration-container {
        max-width: calc(100% - 40px);
        padding: 20px;
    }
}

.registration-item {
    position: relative;
    margin-bottom: 20px;
}

.registration-item label {
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 16px;
    color: #000000;
    transition: top 0.5s;
}

.registration-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    box-sizing: border-box;
    border-radius: 4px;
}

.registration-input:hover {
    border: 1px solid #A6AEC7;
}

.registration-input:focus-visible,
.registration-input:not(:placeholder-shown),
.registration-input:focus {
    border: 1px solid #35B972;
    outline: none;
}

.registration-input:focus + label,
.registration-input:not(:placeholder-shown) + label {
    background: #FFFFFF;
    top: -10px;
    color: #35B972;
    font-size: 12px;
    padding: 0 4px;
}

::-webkit-input-placeholder {
    opacity: 0;
}

.registration__checked-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 31px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.registration__checked-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.registration__checked-container input:checked ~ .registration__checked-checkmark {
    background-color: #ffffff;
}

.registration__checked-container input:checked ~ .registration__checked-checkmark::after {
    display: block;
}

.registration__checked-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 2px;
}

.registration__checked-checkmark:hover {
    border: 1px solid #A6AEC7;
}

.registration__checked-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #0FAF59;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.registration__checked {
    display: flex;
    width: 100%;
}

.registration__checked-text {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.registration__checked-forgot {
    font-size: 14px;
    line-height: 22px;
    color: #20bb68;
    text-decoration: none;
}

.registration__checked-forgot:hover {
    text-decoration: underline;
}

.registration-button {
    border: none;
    width: 100%;
    padding: 16px 0;
    margin-top: 20px;
    background: linear-gradient(0deg, #026FD3, #026FD3), #00B152;
    box-shadow: 0 4px 10px rgba(2, 111, 211, 0.25);
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    /*font-weight: bold;*/
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    user-select: none;
}

.registration-button:hover {
    background: #3690F2;
    box-shadow: 0 4px 10px rgba(2, 111, 211, 0.25);
}

.footer {
    background: #000000;
    font-size: 14px;
    line-height: 22px;
    color: #ADADAD;
    padding: 100px 0 120px;
}

@media (max-width: 768px) {
    .footer {
        padding: 100px 0 60px;
    }
}

.footer-container {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .footer-container {
        max-width: 950px;
    }
}

@media (max-width: 1280px) {
    .footer-container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        max-width: calc(100% - 60px);
        padding: 0 30px;
    }
}

.footer-logo {
    display: block;
    width: 117px;
    margin-bottom: 40px;
}

.footer-container p {
    margin: 30px 0 0;
}


.select {
    position: relative;
    width: 100%;
    max-width: 410px;;
}

.selectCustom {
    position: relative;
    width: 100%;
}

.select__result {
    position: relative;
    padding: 14px 18px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    cursor: pointer;
}

.select__result::after {
    content: "";
    position: absolute;
    background: url("img/arrow.svg") no-repeat;
    top: 21px;
    right: 18px;
    width: 10px;
    height: 7px;
}

.select__result:hover {
    border-color: #A6AEC7;
}

.selectCustom-options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    width: 100%;
    border-radius: 0.4rem;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(177, 183, 211, 0.25);
    z-index: 1;
    padding: 10px 0;
    display: none;
}

.selectCustom.isActive .select__result {
    border-color: #35B972;
}

.selectCustom.isActive .selectCustom-options {
    display: block;
}
.selectCustom.isActive .select__result::after {
    transform: rotate(180deg)
}

.selectCustom-option {
    position: relative;
    padding: 12px 18px;
    font-size: 16px;
}

.selectCustom-option:hover {
    background-color: #F4F4F4;
}

.selectCustom-option:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    width: calc(100% - 32px);
    border-bottom: 1px solid #F4F4F4;
}

.select__options {
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    max-width: 360px;
    height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    overflow: hidden;
    position: absolute;
    background: #f6f4f9;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #7E859D;
    border-radius: 7px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.select__options div {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.select__options .icon {
    margin-right: 10px;
}

.select__options div:first-child {
    display: none;
}

.select__options:disabled {
    display: none;
}

.-group .select__active {
    width: 410px;
}

@media screen and (max-width: 575.98px) {
    .-group .select__active {
        width: calc(100vw - 30px);
    }
}

.select__active {
    height: auto;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.select__active .select__result::after {
    transform: rotate(0deg);
}

.select__element {
    display: none;
}

.modal-sign__input-error__text p {
    margin-top: 10px;
    color: #FF6251;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 15px;
}