.phone-code-group {
    margin-top: 10px;
}

.js-send-code {
    margin-bottom: 10px;
}

#login .phone-code-group .inform_code_text {
    margin-top: 25px;
    margin-bottom: 15px;
}

.login_topblock_form .form_wrap .form-group {
    margin-bottom: 12px;
}

.login_topblock_form .form_wrap .submit-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.password-toggle img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.password-toggle:hover img {
    opacity: 1;
}

/* Убираем отступ справа у поля пароля для места под иконку */
.password-field .form-control {
    padding-right: 50px;
}

.login_page .login_topblock_form .form_wrap .submit-buttons .create-account {
    max-width: 38%;
}

.login_page .login_topblock_form .form_wrap .submit-buttons .login {
    max-width: 60%;
}

.register_page .login_topblock_form .form_wrap .submit-buttons .create-account {
    max-width: 60%;
}

.register_page .login_topblock_form .form_wrap .submit-buttons .login {
    max-width: 38%;
}

.alert-danger ul li {
    margin-bottom:5px;
    list-style-type: disc;
    color: #2c2e30;
}

.register_page .login_topblock_form .login_topblock_text {
    text-align: left;
}

.register_page .login_topblock_form .bottom_text {
    margin-top: 20px;
}

.register_page .form_footer{
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.register_page .privacy-policy {
    color: #828282;
}

.register_page .privacy-policy a {
    color: #828282;
    text-decoration: underline;
}

/* tabs */
.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.tabs-container {
    width: 100%;
}

.tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.tab {
    padding: 12px 16px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
}

.tab:hover {
    color: #333;
}

.tab.active {
    color: #333;
    border-bottom-color: #ffc107;
    font-weight: 600;
}

.tab-content {
    margin-bottom: 25px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #ffc107;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.verification_page .js-send-code,
.verification_page .js-send-verify,
.verification_page .btn-submit {
    width: 60%;
}

.verification_page .btn-personal-cabinet {
    width: 38%;
}

.reset_password_page .login_topblock_form .form_wrap .form-footer-text {
    margin-top: 30px;
    line-height: 140%;
}

.login_topblock_form .form_wrap .forgot-password-text {
    margin-top: 18px;
    text-align: right;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .reset_password_page .login_topblock_form .form_wrap .form-footer-text {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .reset_password_page .login_topblock_form .form_wrap .form-footer-text {
        font-size: 12px;
    }

    .register_page .form_footer{
        position: inherit;
    }
}

