/* ============================================
   FORGOT PASSWORD STYLES
   Version: 1.0.0
============================================ */

/* ============================================
   1. CONTAINER
============================================ */
.forgot-password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

/* ============================================
   2. CARD
============================================ */
.forgot-password-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   3. HEADER
============================================ */
.forgot-password-header {
    text-align: center;
    margin-bottom: 30px;
}

.forgot-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 15px;
}

.forgot-password-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.forgot-password-header p {
    color: #6c757d;
    margin-bottom: 0;
}

/* ============================================
   4. FORM
============================================ */
.forgot-password-card .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.forgot-password-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.forgot-password-card .form-label {
    font-weight: 500;
    color: #555;
}

.forgot-password-card .form-text {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

/* ============================================
   5. BUTTONS
============================================ */
.btn-reset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-reset:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-back {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    text-decoration: underline;
    color: #5a67d8;
}

/* ============================================
   6. SECURITY NOTE
============================================ */
.security-note {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
}

.security-note i {
    color: #667eea;
}

/* ============================================
   7. ALERTS
============================================ */
.alert {
    border-radius: 10px;
    border: none;
}

/* ============================================
   8. RESPONSIVE
============================================ */
@media (max-width: 480px) {
    .forgot-password-card {
        padding: 30px 20px;
    }
    
    .forgot-icon {
        font-size: 40px;
    }
    
    .forgot-password-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .forgot-password-card {
        padding: 20px 15px;
    }
}