

/* Start:/local/templates/elhard/components/bitrix/system.auth.forgotpasswd/flat/style.css?17804774224869*/
/* ===== FORGOT PASSWORD FORM (ЗАБЫЛИ ПАРОЛЬ) ===== */
.user_forms {
    max-width: 400px;
    margin: 40px auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.bx-authform-label-container {
    font-size: 12px;
    font-weight: 500;
    color: #1d1d1f;
}

.register__required-star {
    color: #e31c23;
    font-size: 11px;
    margin-left: 2px;
}

.bx-authform-label-container1{
    font-size: 11px;
    font-weight: 500;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user_forms_mess {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.user_forms_mess strong {
    display: block;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.user_forms_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.user_forms_item label {
    font-size: 12px;
    font-weight: 500;
    color: #1d1d1f;
}

.user_forms_item input {
    padding: 8px 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1d1d1f;
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.user_forms_item input:focus {
    border-color: #4A6B5C;
    box-shadow: 0 0 0 3px rgba(74, 107, 92, 0.1);
}

.user_forms_item input:hover:not(:focus) {
    border-color: #b0b0b8;
}

.user_forms_capch {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    margin-bottom: 20px;
}

.user_forms_capch label {
    font-size: 12px;
    font-weight: 500;
    color: #1d1d1f;
}

.user_forms_capch img {
    border-radius: 8px;
    border: 1px solid #d2d2d7;
    background: #fff;
    width: auto;
    max-width: 180px;
    height: 40px;
    object-fit: contain;
}

.user_forms_capch input {
    padding: 8px 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1d1d1f;
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
    max-width: 180px;
    box-sizing: border-box;
}

.user_forms_capch input:focus {
    border-color: #4A6B5C;
    box-shadow: 0 0 0 3px rgba(74, 107, 92, 0.1);
}

.user_forms_capch input:hover:not(:focus) {
    border-color: #b0b0b8;
}

.user_forms_submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn.btn2 {
    background: linear-gradient(180deg, rgba(74, 107, 92, 0.05) 0%, #4A6B5C 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.btn.btn2:hover {
    background: linear-gradient(180deg, rgba(58, 90, 75, 0.05) 0%, #3A5A4B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn.btn2:active {
    transform: translateY(0);
    transition: 0.05s;
}

.user_forms_submit a {
    display: block;
    text-align: center;
    color: #4A6B5C;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.user_forms_submit a:hover {
    color: #3A5A4B;
    text-decoration: underline;
}

/* Сообщения об ошибках */
.errortext {
    background: rgba(227, 28, 35, 0.05);
    border-left: 2px solid #e31c23;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #e31c23;
    margin-bottom: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Успешные сообщения */
.notetext {
    background: rgba(74, 107, 92, 0.05);
    border-left: 2px solid #4A6B5C;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #1d1d1f;
    margin-bottom: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .user_forms {
        max-width: 100%;
        margin: 20px 16px;
        padding: 16px;
    }
    
    .user_forms_capch img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .user_forms {
        margin: 16px;
        padding: 16px;
    }
    
    .user_forms_item input,
    .user_forms_capch input {
        padding: 7px 10px;
        font-size: 13px;
    }
    
    .btn.btn2 {
        padding: 9px 16px;
    }
}

.user_forms input:focus,
.user_forms button:focus,
.user_forms a:focus {
    outline: none !important;
}
/* End */
/* /local/templates/elhard/components/bitrix/system.auth.forgotpasswd/flat/style.css?17804774224869 */
