:root {
    --font-color: #979b9e;
    --font-color-error: #f87878;
    --font-color-error-hover: #f33;
    --font-color-hover: #030b17;
    --placeholder-color: #ced1d4;
    --placeholder-color-error: #f79292;
    --svgIcon-color: var(--placeholder-color);
    --svgIcon-color-error: var(--placeholder-color-error);
    --svgIcon-color-error-hover: var(--font-color-error-hover);
    --svgIcon-color-hover: var(--font-color-hover);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

textarea:focus,
input:focus {
    outline: none;
}

input.inputGroup__text::-webkit-input-placeholder {
    color: var(--placeholder-color);
}

input.inputGroup__text::-moz-placeholder {
    color: var(--placeholder-color);
}

input.inputGroup__text:-ms-input-placeholder {
    color: var(--placeholder-color);
}

input.inputGroup__text:-moz-placeholder {
    color: var(--placeholder-color);
}

.signForm {
    width: 100%;
    max-width: 553px;
    margin: 0 auto 50px;
}

.signForm__container {
    width: 100%;
    max-width: 943px;
    margin: 0 auto 50px;
}

.signForm__centerH1 {
    justify-content: center;
    display: flex;
}

.signForm__h1 {
    display: inline-block;
    margin-bottom: 30px;
    color: #040b17;
    font-size: 36px;
    font-weight: 900;
    border-bottom: 7px solid #fccc2a;
}

.signForm__h2 {
    margin: 0 10px;
    font-size: 19px;
    font-weight: 900;
}

.signForm__h3 {
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #040b17;
    font-size: 25px;
    font-weight: 900;
    border-bottom: 6px solid #fccc2a;
}

.signForm__h4 {
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #040b17;
    font-size: 18px;
    font-weight: 900;
    border-bottom: 6px solid #fccc2a;
}

.signForm__h1-small {
    font-size: 24px;
}

.inputGroup {
    display: grid;
    padding: 0 0 0;
    margin: 0 10px;
}

.inputGroup__block {
    flex: 1;
    display: grid;
    padding: 25px 0;
    border-bottom: 3px solid #efefef;

    grid-column-gap: 15px;
    grid-template-areas: 'Icon Input''em em';
    grid-template-columns: 18px 1fr;
    grid-template-rows: 1fr auto;
}

.inputGroup:last-of-type .inputGroup__block {
    border-bottom: none;
}

.inputGroup__block-terms {
    justify-content: start;
    min-width: 100%;
    padding: 5px 0;

    grid-column-gap: 37px;
    grid-template-columns: auto;
}

.inputGroup__block-radio {
    justify-content: start;
    min-width: 100%;

    grid-column-gap: 37px;
    grid-template-columns: auto;
}

.inputGroup__label {
    align-items: center;
    justify-content: center;
    order: 0;
    display: flex;
    width: 18px;
    margin-right: 15px;

    grid-area: Icon;
}

.inputGroup__label svg {
    width: 100%;
}

.inputGroup__label svg path {
    transition: 500ms all;

    fill: var(--placeholder-color);
}

.inputGroup__text[type='text'],
.inputGroup__text[type='password'] {
    order: 1;
    color: var(--font-color);
    font-size: 18px;
    font-weight: 500;
    background-color: none;
    box-shadow: none;
    border: none;
    border-width: 0;
    outline: none;
    transition: 500ms all;

    grid-area: Input;
}

.inputGroup__text:hover,
.inputGroup__text:focus {
    color: var(--font-color-hover);
}

.inputGroup__select:focus + .inputGroup__label svg path,
.inputGroup__text:focus + .inputGroup__label svg path,
.inputGroup__block:hover .inputGroup__label svg path {
    fill: var(--font-color-hover);
}

.inputGroup__block-captcha {
    grid-template-areas: 'Icon Input captcha''em em em';
    grid-template-columns: 18px minmax(103px, 1fr) minmax(103px, 150px);
}

.inputGroup__captcha {
    order: 2;
    font-size: 0;
    border: 1px solid #efefef;

    grid-area: captcha;
}

.signForm__center {
    align-items: center;
    justify-content: center;
    display: flex;
}

.signForm__link {
    position: relative;
    margin: 10px 0;
    color: #5583d6;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 500ms all;
}

.signForm__link:hover {
    text-decoration: none;
}

.signForm__link:before,
.signForm__link:after {
    position: absolute;
    bottom: -2px;
    display: block;
    width: 50%;
    height: 2px;
    clear: both;
    content: '';
    background-color: #5583d6;
    transition: 500ms all;
}

.signForm__link:before {
    left: 50%;
}

.signForm__link:after {
    right: 50%;
}

.signForm__link:hover:before {
    width: 0;
    background-color: var(--font-color-hover);
}

.signForm__link:hover:after {
    width: 0;
    background-color: var(--font-color-hover);
}

.signForm__link-gray {
    color: #93979d;
}

.signForm__link-gray:before,
.signForm__link-gray:after {
    background-color: #93979d;
}

.signForm__link-simpleUnderline {
    border-bottom: 2px solid #93979d;
}

.styledChk__label:hover .signForm__link-simpleUnderline {
    border-bottom: 2px solid var(--font-color-hover);
}
.signForm__link-simpleUnderline:hover,
.styledChk__label:hover .signForm__link-simpleUnderline:hover {
    border-bottom: 0;
}

.signForm__link-simpleUnderline:before,
.signForm__link-simpleUnderline:after,
.signForm__link-simpleUnderline:hover:before,
.signForm__link-simpleUnderline:hover:after {
    display: none;
}

.signForm__text {
    color: #93979d;
    font-size: 15px;
    font-weight: 600;
}
.signForm__text > a {
    font-size: inherit;
    font-weight: inherit;
}

.signForm__arrowRight {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 6px;
    margin-bottom: 1px;
    margin-left: 2px;
    vertical-align: middle;
}

.signForm__arrowRight:before,
.signForm__arrowRight:after {
    position: absolute;
    left: 0;
    display: block;
    width: 7px;
    height: 2px;
    clear: both;
    content: '';
    background-color: #5583d6;
    transition: all 500ms;
}

.signForm__link:hover .signForm__arrowRight:before,
.signForm__link:hover .signForm__arrowRight:after {
    background-color: var(--font-color-hover);
}

.signForm__arrowRight:before {
    top: 0;
    transform: rotate(45deg);
}

.signForm__arrowRight:after {
    bottom: 0;
    transform: rotate(-45deg);
}

.signForm__flex {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
}

.inputGroup__textarea {
    width: 100%;
    min-height: 150px;
}

.styledChk {
    align-items: flex-start;
    display: flex;
    cursor: pointer;
}

.styledChk__checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    margin-right: 15px;
    border: 1px solid var(--placeholder-color);
    border-radius: 3px;
    transition: 500ms all;
}

.styledChk__label {
    color: #9c9fa5;
    font-size: 14px;
    font-weight: 600;
    transition: 500ms all;
}

.styledChk__label a {
    display: inline-block;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.styledChk__inp[type=checkbox] {
    display: none;
}

.styledChk__inp[type=checkbox]:checked ~ .styledChk__checkbox:after {
    display: block;
    width: 10px;
    height: 10px;
    margin: 3px;
    clear: both;
    content: '';
    background-color: var(--placeholder-color);
    transition: 500ms all;
}

.styledChk__inp[type=checkbox]:disabled ~ .styledChk__checkbox {
    border: 2px solid #999;
}

.styledChk__inp[type=checkbox]:checked:disabled ~ .styledChk__checkbox:after {
    background-color: #999;
}

.styledChk__inp[type=checkbox]:disabled ~ .styledChk__label {
    color: #999;
}

.inputGroup__block:hover .styledChk__checkbox {
    border-color: var(--font-color-hover);
}

.inputGroup__block:hover .styledChk__inp[type=checkbox]:checked ~ .styledChk__checkbox:after {
    background-color: var(--font-color-hover);
}

.inputGroup__block:hover .styledChk__label,
.inputGroup__block:hover .signForm__link-gray {
    color: var(--font-color-hover);
}

.inputGroup__block:hover .styledChk__label .signForm__link-gray:before,
.inputGroup__block:hover .styledChk__label .signForm__link-gray:after {
    background-color: var(--font-color-hover);
}

.inputGroup__em {
    order: 9;

    grid-area: em;
}

.inputGroup__em label {
    display: block;
    margin-top: 10px;
    color: var(--font-color-error);
    font-size: 14px;
    transition: all 500ms;
}

.inputGroup__block-error:hover .inputGroup__label svg path {
    fill: var(--svgIcon-color-error-hover);
}

.inputGroup__block-error:hover .inputGroup__em label {
    color: var(--font-color-error-hover);
}

.inputGroup__block-error .inputGroup__text {
    color: var(--font-color-error);
}

.inputGroup__block-error:hover .inputGroup__text,
.inputGroup__block-error .inputGroup__text:focus {
    color: var(--font-color-error-hover);
}

.inputGroup__block-error .inputGroup__label svg path {
    fill: var(--font-color-error);
}

.inputGroup__block-error:hover .inputGroup__label svg path,
.inputGroup__block-error .inputGroup__select:focus + .inputGroup__label svg path,
.inputGroup__block-error .inputGroup__text:focus + .inputGroup__label svg path {
    fill: var(--font-color-error-hover);
}

.inputGroup__block-error input.inputGroup__text::-webkit-input-placeholder {
    color: var(--placeholder-color-error);
}

.inputGroup__block-error input.inputGroup__text::-moz-placeholder {
    color: var(--placeholder-color-error);
}

.inputGroup__block-error input.inputGroup__text:-ms-input-placeholder {
    color: var(--placeholder-color-error);
}

.inputGroup__block-error input.inputGroup__text:-moz-placeholder {
    color: var(--placeholder-color-error);
}

.inputGroup__block-error .styledChk__checkbox {
    border-color: var(--font-color-error);
}

.inputGroup__block-error:hover .styledChk__checkbox {
    border-color: var(--font-color-error-hover);
}

.inputGroup__block-error .styledChk__inp[type=checkbox]:checked ~ .styledChk__checkbox:after {
    background-color: var(--font-color-error);
}

.inputGroup__block-error:hover .styledChk__inp[type=checkbox]:checked ~ .styledChk__checkbox:after {
    background-color: var(--font-color-error-hover);
}

.inputGroup__block-error .styledChk__label,
.inputGroup__block-error .styledChk__label .signForm__link-gray {
    color: var(--font-color-error);
}

.inputGroup__block-error:hover .styledChk__label,
.inputGroup__block-error:hover .styledChk__label .signForm__link-gray {
    color: var(--font-color-error-hover);
}

.inputGroup__block-error .styledChk__label .signForm__link-gray:before,
.inputGroup__block-error .styledChk__label .signForm__link-gray:after {
    background-color: var(--font-color-error);
}

.inputGroup__block-error:hover .styledChk__label .signForm__link-gray:before,
.inputGroup__block-error:hover .styledChk__label .signForm__link-gray:after {
    background-color: var(--font-color-error-hover);
}

.signForm__opportunities {
    display: grid;

    grid-gap: 20px;
    grid-template-columns: 1fr;
}

.opportunitiesBlock {
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding: 29px 22px;
    margin: 50px auto 150px;
    margin: 0 10px;
    background-color: #fff;
    box-shadow: 0 14px 25px 0 rgba(212, 216, 222, 0.19);
    border: 1px solid #e4e9fa;
    border-radius: 2px;
}

.opportunitiesBlock__data {
    position: relative;
}

.opportunitiesBlock__title {
    align-items: flex-end;
    display: flex;
}

.opportunitiesBlock__item {
    display: flex;
    margin: 13px 0;
}

.opportunitiesBlock__item span {
    color: #262a49;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.opportunitiesBlock__item:before {
    display: inline-block;
    width: 16px;
    height: 13px;
    min-width: 16px;
    margin-top: 8px;
    margin-right: 20px;
    clear: both;
    content: '';
    background: url(/assets/images/sign/check.svg) no-repeat center;
}

.styledRadio {
    align-items: center;
    display: flex;
    cursor: pointer;
}

.styledRadio__radio {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 18px;
    border: 1px solid var(--placeholder-color);
    border-radius: 100%;
    transition: 500ms all;
}

.styledRadio__label {
    display: inline-block;
    color: var(--placeholder-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
    transition: 500ms all;
}

.styledRadio__inp[type=radio] {
    display: none;
}

.styledRadio__inp[type=radio]:checked ~ .styledRadio__radio:after {
    display: block;
    width: 7px;
    height: 7px;
    margin: 4px;
    clear: both;
    content: '';
    background-color: #cfd2d5;
    border-radius: 100%;
    transition: 500ms all;
}

.styledRadio__inp[type=radio]:disabled ~ .styledRadio__radio {
    border: 1px solid var(--placeholder-color);
}

.styledRadio__inp[type=radio]:checked:disabled ~ .styledRadio__radio:after {
    background-color: ar(--placeholder-color);
}

.styledRadio__inp[type=radio]:disabled ~ .styledRadio__label {
    color: #999;
}

.styledRadio:hover .styledRadio__radio {
    border-color: var(--font-color-hover);
}

.styledRadio:hover .styledRadio__inp[type=radio]:checked ~ .styledRadio__radio:after {
    background-color: var(--font-color-hover);
}

.styledRadio:hover .styledRadio__label {
    color: var(--font-color-hover);
}

.inputGroup__block-error .styledRadio__radio {
    border-color: var(--font-color-error);
}

.inputGroup__block-error .styledRadio:hover .styledRadio__radio {
    border-color: var(--font-color-error-hover);
}

.inputGroup__block-error .styledRadio__inp[type=radio]:checked ~ .styledRadio__radio:after {
    background-color: var(--font-color-error);
}

.inputGroup__block-error .styledRadio:hover .styledRadio__inp[type=radio]:checked ~ .styledRadio__radio:after {
    background-color: var(--font-color-error-hover);
}

.inputGroup__block-error .styledRadio__label {
    color: var(--font-color-error);
}

.inputGroup__block-error .styledRadio:hover .styledRadio__label {
    color: var(--font-color-error-hover);
}

.inputGroup__select {
    display: block;
    width: 100%;
    margin: 0;
    color: #d1d1d4;
    font-size: 16px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'17\' height=\'11\'%3E%3Cpath stroke=\'%23CED1D4\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\' fill=\'none\' d=\'M13.8 3.3L8 9 2.2 3.3\'/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center right;
    border: none;
    transition: 500ms all;
}

.inputGroup__block-error .inputGroup__select {
    color: var(--font-color-error);
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'17\' height=\'11\'%3E%3Cpath stroke=\'%23f87878\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\' fill=\'none\' d=\'M13.8 3.3L8 9 2.2 3.3\'/%3E%3C/svg%3E');
}

.inputGroup__block-error .inputGroup__select:focus,
.inputGroup__block-error:hover .inputGroup__select {
    color: var(--font-color-error-hover);
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'17\' height=\'11\'%3E%3Cpath stroke=\'%23ff3333\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\' fill=\'none\' d=\'M13.8 3.3L8 9 2.2 3.3\'/%3E%3C/svg%3E');
}

.inputGroup__select::-ms-expand {
    display: none;
}

.inputGroup__select:hover {
    color: var(--font-color-hover);
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="17" height="11"%3E%3Cpath stroke="%23030B17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M13.8 3.3L8 9 2.2 3.3"/%3E%3C/svg%3E');
}

.inputGroup__select:focus {
    color: var(--font-color-hover);
    outline: none;
}

.inputGroup__select option {
    font-weight: 500;
}

@media (min-width: 375px) {
    .styledChk__label {
        font-size: 13px;
    }
}

@media(min-width: 575px) {
    .signForm__h1 {
        margin-bottom: 36px;
        font-size: 48px;
    }

    .signForm__h1-small {
        font-size: 32px;
    }

    .signForm__flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .inputGroup {
        margin: 0 15px;

        grid-column-gap: 28px;
        grid-template-columns: repeat(auto-fit, minmax(237px, 1fr));
    }

    .inputGroup-terms {
        grid-template-columns: 1fr;
    }

    .inputGroup__block {
        padding: 20px 0;
    }
    .inputGroup__block-terms {
        padding: 6px 0;
    }

    .inputGroup__block-noIcon {
        grid-template-areas: 'Input''em';
        grid-template-columns: 1fr;
    }

    .inputGroup__em label {
        font-size: 16px;
    }
    .signForm__text {
        font-size: 16px;
        font-weight: 500;
    }

    .signForm__opportunities {
        justify-content: space-between;

        grid-template-columns: repeat(2, minmax(256px, 443px));
    }

    .opportunitiesBlock {
        margin: 0;
    }

    .signForm__h3,
    .signForm__h4 {
        margin-bottom: 0;
    }
    .styledChk__label {
        font-size: 16px;
        font-weight: 500;
    }

    .opportunitiesBlock__title {
        height: 60px;
    }

    .opportunitiesBlock__data-decor:after {
        position: absolute;
        right: 0;
        bottom: -100px;
        width: 77px;
        height: 128px;
        content: '';
        background: url(/assets/images/sign/dots.png);
    }
}

@media(min-width: 768px) {
    .signForm__h1 {
        margin-bottom: 44px;
        font-size: 54px;
    }

    .signForm__h2 {
        font-size: 24px;
    }

    .signForm__h3 {
        font-size: 32px;
    }

    .signForm__h4 {
        font-size: 20px;
    }

    .inputGroup__block {
        padding: 25px 0;
    }
    .inputGroup__block-terms {
        padding: 8px 0;
    }
    .opportunitiesBlock__item span {
        font-size: 20px;
    }

    .signForm__h1-small {
        font-size: 36px;
    }

    .inputGroup__em label {
        font-size: 18px;
    }
    .styledChk__label {
        font-size: 18px;
    }
    .opportunitiesBlock {
        padding: 36px 33px;
    }
    .inputGroup {
        margin: 0 20px;
    }
    .signForm__text {
        font-size: 18px;
    }
}

@media(min-width: 1024px) {
    .signForm__h1 {
        margin-bottom: 54px;
        font-size: 62px;
    }

    .signForm__h2 {
        font-size: 30px;
    }

    .signForm__h3 {
        font-size: 40px;
    }

    .signForm__h4 {
        font-size: 21px;
    }

    .signForm__h1-small {
        font-size: 42px;
    }

    .inputGroup {
        margin: 0 25px;
    }
    .inputGroup__block {
        padding: 30px 0;
    }
    .inputGroup__block-terms {
        padding: 10px 0;
    }
}

@media(min-width: 1200px) {
}
