
#iPageRegistration .main-block--footer {
    padding-bottom: 1rem;
}

.registration {
    display: flex;
    column-gap: 1.5rem;
    justify-content: center;
    padding: 1rem;
}
.registration--credentials,
.registration--socials {
    flex: 1 0 50%
}

.btn-send-code {
    background-color: white;
    border: 1px solid brown;
    color: brown;
    text-align: center;
    font-size:.9em;
    height:36px;
    padding: 0 10px;
    width: 150px;
}
.btn-send-code:hover {
    background-color: brown;
    color: white;
}
.btn-send-code.disabled,
.btn-send-code[disabled] {
    cursor: progress;
    background: rgba(250, 250, 250, 0.6);
    color: #aaaaaa;
    border-color: #aaaaaa;
}
.btn-send-code.disabled[disabled] {
    cursor: auto;
}
.code-field-group.disabled label,
.code-field-group.disabled label:after {
    color: #999999;
}
.code-field-group.disabled input {
    color: #aaaaaa;
    border-color: #aaaaaa;
}

.btn-submit {
    text-align: center;
    background-color: brown;
    font-size: 1rem;
    padding: .5rem 1.5rem;
    color: white;
    border: 1px solid white;
    height: 48px;
    border-radius: 10px;
    cursor: pointer;
}
.btn-submit:hover {
    background-color: white;
    color: brown;
    border-color: brown;
}
.btn-submit[disabled] {
    cursor: default!important;
    background: rgba(250, 250, 250, 0.6);
    color: #aaaaaa;
    border-color: #aaaaaa;
}
.cod-sent-note {
    padding: .5rem;
    background: white;
    border: 1px solid brown;
    border-radius: 5px;
    margin-top: .5rem;
}

.registration-errors {
    padding: .5rem 1rem;
    background: white;
    border: 1px solid brown;
    border-radius: 5px;
}
.registration-errors--error {
    color: brown;
}
.registration-errors--error:before {
    content: '×';
    color: brown;
    font-weight: 700;
    margin-right: .5rem;
}

@media (max-width: 670px) {
    .registration {
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    .registration--credentials,
    .registration--socials {
        flex-basis: 100%;
    }
    .registration--socials {
        margin-top: 1rem;
        border-top: 1px solid brown;
    }
}
