/* ==========================================================================
   OVANIE PREMIUM FORGOT PASSWORD STYLESHEET
   ========================================================================== */

.auth-forgot-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(229, 231, 235, 0.7);
}

.text-gray-600 {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.auth-forgot-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-forgot-container label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.auth-forgot-container input[type="email"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
    background-color: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    color: #111827;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.auth-forgot-container input[type="email"]:focus {
    background-color: #ffffff;
    border-color: var(--ov-blue);
    box-shadow: 0 0 0 4px rgba(7, 151, 223, 0.12);
}

.auth-forgot-container button, 
.auth-forgot-container .btn-primary {
    height: 52px;
    width: 100%;
    background: linear-gradient(135deg, var(--ov-blue), var(--ov-blue-2));
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(2, 79, 200, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
}

.auth-forgot-container button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 79, 200, 0.3);
    filter: brightness(1.05);
}

.text-red-500 {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

/* Status message */
.mb-4.text-sm.text-green-600 {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 520px) {
    .auth-forgot-container {
        margin: 30px 16px;
        padding: 24px;
        border-radius: 20px;
    }
}
