﻿/* استایل‌های اختصاصی برای صفحه بازیابی جهت حفظ تم */
.forgot-password-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.forgot-card {
    width: min(450px, 100%);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 28px 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    text-align: center;
}

.forgot-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #3b82f6; /* یک رنگ آبی ملایم برای آیکون */
}

.forgot-title {
    color: white;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: bold;
}

.forgot-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* استفاده از همان کلاس‌های Input که در صفحه لاگین داشتی */
.input-group {
    margin-bottom: 24px;
    text-align: right;
}

    .input-group label {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 8px;
        font-size: 14px;
    }

.input-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

    .input-field:focus {
        border-color: #3b82f6;
        background: rgba(255, 255, 255, 0.1);
    }

.btn-reset {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #3b82f6;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

    .btn-reset:hover {
        background: #2563eb;
        transform: translateY(-2px);
    }

.back-to-login {
    display: inline-block;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

    .back-to-login:hover {
        color: white;
    }
