/* Форма входа/регистрации по email + коду подтверждения ([publication_auth_form]) */

.public-auth {
    max-width: 360px;
    margin: 0 auto;
}

.public-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: Raleway, sans-serif;
}

.public-auth-form__step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.public-auth-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.public-auth-form__label {
    color: #2D3648;
    font-size: 14px;
    text-align: center;
}

.public-auth-form__field .public-auth-form__label {
    text-align: left;
}

.public-auth-form__input {
    height: 40px;
    padding: 0 12px;
    border: 1px solid #D2D2D2;
    border-radius: 6px;
    background: #FFF;
    color: #101820;
    font-family: Raleway, sans-serif;
    font-size: 14px;
}

.public-auth-form__input:focus {
    outline: none;
    border-color: #101820;
}

.public-auth-form__btn {
    height: 40px;
    padding: 0 18px;
    border: 1px solid #101820;
    border-radius: 6px;
    background: #101820;
    color: #FFF;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .15s ease-in-out;
}

.public-auth-form__btn:hover {
    background: #2D3648;
}

.public-auth-form__btn:disabled {
    opacity: .6;
    cursor: default;
}

.public-auth-form__message {
    min-height: 18px;
    color: #2D3648;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.public-auth-form__message--error {
    color: #C0392B;
}
