@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');
:root {
    --white-color: #FFFFFF;
    --blck-color: #1E282D;
    --accent-color: #0072F4;
    --gray-color: #D9D9D9;
    --dark-gray-color: #5E6166;
    --bg-color: #032554;
    --brand-colors-pantone-2126: #275ec7;
    --error-color: #BD0000;

    --font-family: "Open Sans", sans-serif;
    --second-family: "Roboto", sans-serif;
    --third-family: "Montserrat", sans-serif;

    /* Фиксированные ширины форм */
    --form-width-login: 348px;
    --form-width-forgot: 300px;
    --form-width-register: 596px;
}
* {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
    height: 5px;
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-colors-pantone-2126);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background: var(--white-color);
}
/* CUSTOM CHECKBOX */
input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: initial;
    border: none !important;
    padding: 0 !important;
}
.custom-checkbox-container {
    cursor: pointer;
}
.custom-checkbox-input {
    position: absolute;
    height: 0;
    width: 0;
    cursor: pointer;
}
.custom-checkbox-container label {
    font-size: 16px;
    cursor: pointer;
}
.custom-checkbox-input::before {
    content: "";
    background-image: url("https://servicedesk.eltex-co.ru/sd/auth/images/checkbox.svg");
    display: flex;
    position: relative;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}
.custom-checkbox-container:hover .custom-checkbox-input::before {
    background-image: url("https://servicedesk.eltex-co.ru/sd/auth/images/checkbox-hover.svg");
}
.custom-checkbox-input:checked::before {
    background-image: url("https://servicedesk.eltex-co.ru/sd/auth/images/checkbox-active.svg");
}
.custom-checkbox-container:hover .custom-checkbox-input:checked:before {
    background-image: url("https://servicedesk.eltex-co.ru/sd/auth/images/checkbox-active.svg");
}
.custom-checkbox-container label {
    padding-left: 32px;
    font-size: 16px;
    line-height: 20px;
}
.custom-checkbox-container label a {
    font-size: 16px;
    line-height: 20px;
    color: var(--brand-colors-pantone-2126);
    transition: all .2s ease;
}
.custom-checkbox-container label a:hover {
    color: var(#0062d1);
}
html {
    font-size: 16px;
    font-family: var(--font-family);
    text-decoration: none;
    margin: 0;
}
body {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-color);
    overflow: hidden;
}
body.error-visible .scroll-wrapper {
    padding: 68px 0 0;
}
#errorMessage {
    z-index: 50;
}
a {
    text-decoration: none;
    padding: 0;
}
ul li {
    list-style: none;
}
._white {
    color: var(--white-color);
}
._dark {
    color: var(--blck-color);
}
._accent {
    color: var(--accent-color);
}
._gray {
    color: var(--gray-color);
}
._gray-dark {
    color: var(--dark-gray-color);
}
.text-form-button {
    color: var(--accent-color);
    font-weight: 600;
    line-height: 150%;

    text-align: center;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.text-form-button:not(.disabled):hover {
    color: #0062d1;
}
.text-form-button.disabled {
    cursor: default;
    opacity: 0.5;
}
h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
}
h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.scroll-wrapper {
    padding: 68px 0 32px;
    position: relative;
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 52px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 5;
}

/* BG */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.background__blur {
    position: absolute;
    width: 734px;
    height: 734px;
    left: 15%;
    bottom: -45%;
    background-color: var(--accent-color);
    border-radius: 50%;
    filter: blur(15rem);
    opacity: 0.8;
    z-index: 1;
}
.bg-form {
    position: absolute;
    pointer-events: none;
}
.bg-form img {
    width: 100%;
    height: 100%;
}
.bg-form__rect {
    width: 907px;
    height: 907px;
    right: -84px;
    top: -282px;
    opacity: 0.56;
    animation: slide-top 20.5s cubic-bezier(0.75, 0.07, 0.45, 0.86) infinite both;
}
.bg-form__rect img {
    transform: rotate(15deg);
}
.bg-form__round {
    width: 848px;
    height: 848px;
    left: -11.75rem;
    top: calc(100% - 23.6875rem);
    opacity: 0.72;
    animation: slide-top01 10.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}
.bg-form__rect.stop-animation {
    animation: none;
    transform: none;
}
.bg-form__round.stop-animation01  {
    animation: none;
    transform: none;
}
.toggle-button {
    position: relative;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    display: table-cell;
    vertical-align: center;
    bottom: 60px;
    color: var(--gray-color);
    font-size: 16px;
    cursor: pointer;
    z-index: 1000;
}

.toggle-button:hover {
    color: var(--dark-gray-color);
}

@keyframes slide-top {
    0% {
        transform: rotate(0) scale(1) translateY(0);
    }
    50% {
        transform: rotate(30deg) scale(1.1) translateY(100px);
    }
    100% {
        transform: rotate(0) scale(1) translateY(0);
    }
}
@keyframes slide-top01 {
    0% {
        transform: rotate(0) scale(1) translate(0);
    }
    50% {
        transform: rotate(0) scale(1.1) translate(-8.125rem, 3.125rem);
    }
    100% {
        transform: rotate(0) scale(1) translate(0);
    }
}
.col-100 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
/* FORM WRAPPER */
.form-wrapper {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    z-index: 2;
}
.form-wrapper .logo {
    padding: 29px 23px;
}
.form-content {
    padding: 32px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08),
    0 1px 1px 0 rgba(0, 0, 0, 0.08), 0 0 1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}
/* ФИКСИРОВАННАЯ ШИРИНА ДЛЯ ФОРМЫ ВХОДА */
.form-wrapper #login-form.active {
    display: block;
    width: var(--form-width-login);
    min-width: var(--form-width-login);
    max-width: var(--form-width-login);
}

/* ФИКСИРОВАННАЯ ШИРИНА ДЛЯ ФОРМЫ ВОССТАНОВЛЕНИЯ ПАРОЛЯ */
.form-wrapper #forgot-password.active {
    display: block;
    width: var(--form-width-forgot);
    min-width: var(--form-width-forgot);
    max-width: var(--form-width-forgot);
}

/* ФИКСИРОВАННАЯ ШИРИНА ДЛЯ ФОРМЫ РЕГИСТРАЦИИ */
.form-wrapper #user-info-form.active {
    display: block;
    width: var(--form-width-register);
    min-width: var(--form-width-register);
    max-width: var(--form-width-register);
}

.form-wrapper form,
.form-wrapper #login-form {
    width: 100%;
    display: none;
}
.form-wrapper form.active,
.form-wrapper #login-form.active {
    display: block;
}
.form-wrapper form .buttons {
    width: 100%;
    display: flex;
    gap: 24px;
}
.custom-input {
    position: relative;
    width: 100%;
}
.custom-input:not(#user-descr-wrapper) {
    height: 52px;
    margin-top: 16px;
}
.custom-input > div {
    position: relative;
    width: 100%;
    height: 100%;
}
.custom-input input,
.custom-input textarea {
    height: 100%;
    width: 100% !important;
    border: none;
    border-bottom: 1.5px var(--blck-color) solid;
    border-radius: 4px 4px 0 0;
    padding: 28px 0 12px;
    font-size: 16px;
    color: var(--blck-color);
    line-height: 130%;
    font-family: var(--font-family);
    background: transparent;
}
.custom-input textarea {
    width: 100%;
    height: 105px;
    resize: none;
}
.custom-input input:focus,
.custom-input textarea:focus {
    border: none;
    border-bottom: 1.5px var(--blck-color) solid;
    outline: none;
}
.custom-input input:focus + label {
    font-size: 14px;
    line-height: 114%;
    color: #1E1E1EA3;
    top: 18px;
}

.login-form-field_input:focus + .login-form-field_label,
.custom-input input:not(:placeholder-shown) + label,
.login-form input:-webkit-autofill+.login-form-field_label {
    top: -4px;
    font-size: 14px;
}

.custom-input .login-form-field_label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
    user-select: none;
    pointer-events: none;
    transition: all .3s ease;
    background: transparent;
}

.submit-button {
    width: 100%;
}

.submit-button > div {
    width: 100%;
    position: relative;
}

.accent-button input {
    width: 100%;
    background: var(--accent-color);
    border: none;
    padding: 12px 24px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    border-radius: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.accent-button:not(.disabled) input:hover{
    background: #0062d1;
}

.accent-button.disabled input {
    opacity: 0.5;
    cursor: default;
}
#userProductLabel {
    margin-top: -20px;
}
#user-descr-wrapper {
    padding-top: 18px;
}
#user-descr {
    margin-top: 4px;
    padding-top: 0;
}
/* #userDescrLabel {
  top: 0;
} */
.custom-input input:focus ~ #userProductLabel {
    margin-top: 0;
}
#login-form input#username,
#login-form input#password,
#forgot-password input#forgot-email {
    width: 100%;
}
/* #login-form input,
#forgot-password input {
  width: 100%;
} */

.accent-button input {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border: none;
    padding: 12px 24px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    border-radius: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.accent-button:not(.disabled) input:hover {
    background: #0062d1;
}
.accent-button.disabled input {
    opacity: 0.5;
    cursor: default;
}
.divider {
    width: 100%;
    height: 1px;
    background: var(--gray-color);
}
.get-data-descr {
    text-align: center;
    font-size: 14px;
}

#user-info-form {
    width: 596px;
}
#user-info-form > *,
#user-info-form input {
    width: 100%;
}
#user-info-first-step,
#user-info-second-step {
    display: none;
}
#user-info-first-step._show,
#user-info-second-step._show {
    display: block;
}
#user-info-close {
    position: relative;
    margin-top: -16px;
    display: grid;
}
#user-info-close img {
    cursor: pointer;
    justify-self: flex-end;
}
.optional {
    display: none;
}
.optional.-show {
    display: block;
}
.pick {
    position: relative;
    cursor: pointer;
}
.pick input {
    cursor: pointer;
}
.pick div:not(.input-error-msg) {
    width: 20px;
    height: 20px;
    background-image: url("https://servicedesk.eltex-co.ru/sd/auth/images/pick-arrow.svg");
    background-color: var(--white-color);
    position: absolute;
    right: 0;
    top: 20px;
    /* bottom: 12px; */
    transition: all 0.2s ease;
    pointer-events: none;
}
.pick input:focus ~ .pick-arrow {
    transform: rotate(180deg);
}
.pick-list {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 8px);
    background-color: var(--white-color);
    padding: 0;
    border: 1px var(--gray-color) solid;
    border-radius: 8px;
    z-index: 2;
}
.pick-list.active {
    display: block;
    max-height: 220px;
    overflow-y: auto;
}
.pick-list li {
    padding: 6px 12px;
    transition: all 0.2s ease;
    font-size: 14px;
}
.pick-list li:hover {
    color: var(--accent-color);
    cursor: pointer;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 24px;
}

.login-actions .forgot-password-btn {
    padding: 8px 0;
}

/* Стили для language-selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-current {
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0 8px;
    user-select: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--accent-color);
    position: relative;
    left: 90px;
}

.language-current svg {
    transition: transform 0.2s ease;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    margin-top: 4px;
    min-width: 70px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.language-dropdown.active {
    display: block;
}

.language-option {
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    width: 20%;
}

.language-option:hover {
    background-color: var(--gray-color);
    color: var(--accent-color);
}

.get-data-descr {
    text-align: center;
    font-size: 14px;
    margin: 8px 0 0 0;
}

.get-data-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    margin-top: 8px;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--gray-color);
    margin: 16px 0 8px 0;
}

/* APP */
.app {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    z-index: 2;
}
.app__title {
    font-size: 14px;
    line-height: 130%;
}
.app__links {
    display: flex;
    gap: 12px;
}
.app__free {
    font-size: 14px;
    line-height: 130%;
}

@media screen and (max-width: 1440px) {
    .bg-form__rect, .bg-form__round {
        width: auto;
        height: auto;
    }
    .bg-form__rect img, .bg-form__round img {
        height: 600px;
        width: 600px;
    }
}

@media screen and (max-width: 1200px) {
    .bg-form__rect, .bg-form__round {
        width: auto;
        height: auto;
    }
    .bg-form__rect img, .bg-form__round img {
        height: 500px;
        width: 500px;
    }
}

@media screen and (max-width: 992px) {
    .bg-form__rect, .bg-form__round {
        width: auto;
        height: auto;
    }
    .bg-form__rect {
        top: -220px;
    }
    .bg-form__round {
        left: -3.75rem;
    }
    .bg-form__rect img, .bg-form__round img {
        height: 420px;
        width: 420px;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .sm-mt-12 {
        margin-top: 12px;
    }
    h1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 160%;
    }
    .bg-form__rect {
        right: -150px;
        top: -6.25rem;
    }
    .bg-form__rect img {
        height: 320px;
        width: 320px;
    }

    .login-actions {
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .login-actions .forgot-password-btn {
        padding: 8px 0;
        font-size: 14px;
    }

    .language-selector {
        display: inline-block;
    }

    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 60px;
    }

    .language-current {
        padding: 8px 0 8px 8px;
        font-size: 14px;
    }

    .language-option {
        padding: 6px 10px;
        font-size: 13px;
    }

    .get-data-descr {
        font-size: 12px;
        margin: 4px 0 0 0;
    }

    .get-data-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 4px;
    }

    .divider {
        margin: 12px 0 8px 0;
    }

    @keyframes textAnimation {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(-120%, 0);
        }
    }
    .custom-input input:focus ~ label,
    .custom-input input:not(:placeholder-shown) + label,
    .custom-input textarea:focus ~ label,
    .custom-input textarea:not(:placeholder-shown) + label {
        font-size: 10px;
        top: 4px;
    }
    #login-form input#username,
    #login-form input#password,
    #forgot-password input#forgot-email,
    .custom-input input {
        width: 100% !important;
        max-width: 100% !important;
    }
    .col-100 {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0;
    }
    .scroll-wrapper {
        padding: 32px 0 0;
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
        max-height: 100%;
    }
    .form-wrapper {
        gap: 14px;
    }
    .form-wrapper .logo {
        padding: 14px 16px;
    }
    .form-wrapper .logo svg {
        width: 136px;
        height: 28px;
        display: block;
    }
    .form-content {
        width: 100vw;
        border-radius: 32px 32px 0 0;
        padding: 32px 16px 0;
    }

    /* Адаптив для мобильных устройств - формы занимают всю доступную ширину */
    .form-wrapper #login-form.active,
    .form-wrapper #forgot-password.active,
    .form-wrapper #user-info-form.active {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }

    .form-wrapper form .buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .form-wrapper form .buttons div:first-child input {
        background-color: var(--white-color);
        color: var(--accent-color);
    }
    .accent-button input {
        padding: 8px 12px;
        font-size: 14px;
    }
    #login-form input[type="text"],
    #forgot-password input[type="text"] {
        width: 100%;
    }
    .get-data-descr {
        font-size: 12px;
    }

    .custom-checkbox-container label, .custom-checkbox-container label a {
        font-size: 13px;
    }

    #user-info-form {
        width: 100%;
    }
    #product-input {
    }
    #userProductLabel {
        white-space: initial;
        margin-top: -10px;
    }
    .custom-input input:not(:placeholder-shown) + #userProductLabel {
        margin-top: -10px;
    }

    .app {
        background-color: var(--white-color);
    }
    .app__title {
        color: var(--blck-color);
        text-align: center;
    }
    .app__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .app__links li:nth-child(2) {
        grid-area: 1 / 1 / 1 / 1;
    }
    .app__links li:nth-child(3) {
        grid-area: 1 / 2 / 1 / 2;
    }
    .app__free {
        font-size: 12px;
        text-align: center;
        color: var(--blck-color);
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.modal-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-content button {
    padding: 10px 20px;
    background: var(--accent-color); /* Цвет кнопки */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.modal-content button:hover {
    background: var(--brand-colors-pantone-2126);
}
.input-field.invalid {
    border-color: var(--error-color);
}

.custom-input input.input-error {
    border-color: var(--error-color);
}
.custom-input input.input-error ~ label {
    color: var(--error-color);
    opacity: .67;
}
.custom-input .input-error-msg {
    margin-top: 4px;
    font-weight: 400;
    font-size: 10px;
    line-height: 105%;
    color: var(--error-color) !important;
    z-index: 0;
    opacity: 0;
    transition: all 0.2s linear;
    position: relative;
    pointer-events: none;
}
.custom-input input.input-error ~ .input-error-msg {
    margin-top: 4px;
    opacity: 1;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.b-login-error div {
    background: #fdeded;
    color: #eb5757;
}
.b-login-text {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0;
    max-width: 320px;
    min-width: 240px;
    padding: 0;
    text-align: center;
    width: 100%;
    color: #000;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(
            -50%,
            -50%
    );
    z-index: 5;
}
.b-login-text div {
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(201, 154, 154, 0.3);
    box-sizing: border-box;
    display: inline-block;
    max-width: 320px;
    min-width: 240px;
    padding: 16px 16px 16px 42px;
    position: relative;
    text-align: left;
}
.b-login-error {
    background: #fdeded;
    width: 100%;
    font-size: 13px;
    line-height: 15px;
}
.b-login-error div:before {
    background: transparent url(https://servicedesk.eltex-co.ru/sd/icon-warn.png) no-repeat 0 0;
    content: "";
    display: block;
    height: 16px;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 18px;
}

/* Переопределяем стили из login.css */
body {
    width: 100vw !important;
    min-height: auto !important;
    font-family: var(--font-family) !important;
}

.b-login-form,
.b-login-form-extended {
    all: unset;
    display: block !important;
}

/* Переопределяем контейнеры полей */
.login-form div {
    width: 100%;
    height: auto;
    margin-top: 24px;
    margin: 0;
}

.login-form .submit-button {
    background: none;
    height: 48px;
}

/* Переопределяем лоадер */
#login-form-loader {
    display: none !important;
}

/* Стили для нашей кастомной формы */
.form-content {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 32px !important;
}

.divider {
    width: 100% !important;
    height: 1px !important;
    background: var(--gray-color) !important;
    margin: 16px 0 8px 0 !important;
    opacity: 0.5 !important;
}

/* Стили для переключателя языка */
.login-actions {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    gap: 16px !important;
}

.login-actions .forgot-password-btn {
    padding: 0 !important;
    font-size: 16px !important;
    margin-right: auto !important;
}

.language-selector {
    position: relative !important;
    display: inline-block !important;
}

.language-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid var(--gray-color) !important;
    border-radius: 4px !important;
    margin-top: 4px !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.language-dropdown.active {
    display: block !important;
}

.language-option:hover {
    background-color: var(--gray-color) !important;
    color: var(--accent-color) !important;
}

/* Стили для нижней части */
.get-data-descr {
    text-align: center !important;
    font-size: 14px !important;
    margin: 8px 0 0 0 !important;
    color: var(--dark-gray-color) !important;
}

.get-data-btn {
    display: block !important;
    text-align: center !important;
    padding: 12px 24px !important;
    margin-top: 8px !important;
    font-size: 16px !important;
}

/* Стили для формы регистрации (user-info-form) */
.user-info-form .custom-input label {
    position: absolute !important;
    left: 0 !important;
    top: 18px !important;
    font-size: 16px !important;
    line-height: 130% !important;
    color: #1E1E1E !important;
    background: transparent !important;
    transition: all .3s ease !important;
    white-space: nowrap !important;
    cursor: text !important;
    z-index: 1 !important;
    width: auto !important;
    height: auto !important;
}

/* Состояние фокуса для формы регистрации */
.user-info-form .custom-input input:focus ~ label,
.user-info-form .custom-input input:not(:placeholder-shown) + label,
.user-info-form .custom-input textarea:focus ~ label,
.user-info-form .custom-input textarea:not(:placeholder-shown) + label {
    top: 0 !important;
    font-size: 12px !important;
    line-height: 114% !important;
    color: #1E1E1EA3 !important;
}

/* Убираем лишние стили из login.css для формы регистрации */
.user-info-form .custom-input input {
    padding: 32px 0 10px !important;
    font-size: 16px !important;
    height: 52px !important;
}

/* Стили для формы восстановления пароля (forgot-password) */
#forgot-password .custom-input label {
    position: absolute !important;
    left: 0 !important;
    top: 22px !important;
    font-size: 16px !important;
    line-height: 130% !important;
    color: #767676 !important;
    background: transparent !important;
    transition: all .3s ease !important;
    white-space: nowrap !important;
    cursor: text !important;
    z-index: 1 !important;
    width: auto !important;
    height: auto !important;
}

/* Состояние фокуса для формы восстановления пароля */
#forgot-password .custom-input input:focus ~ label,
#forgot-password .custom-input input:not(:placeholder-shown) + label {
    top: 0 !important;
    font-size: 14px !important;
    line-height: 114% !important;
    color: #1E1E1EA3 !important;
}

/* Убираем лишние стили для инпутов формы восстановления */
#forgot-password .custom-input input {
    padding: 28px 0 12px !important;
    font-size: 16px !important;
    height: 52px !important;
}

.submit-button input[type="submit"]:focus,
.accent-button input:focus,
#submit-button:focus {
    height: auto !important;
    min-height: 48px !important;
    outline: none;
    box-shadow: none;
}

/* Также добавьте для конкретного элемента */
#submit-button {
    height: auto !important;
    min-height: 48px !important;
}