/* ========================================
   Forget Password Page Styles
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B4C8C;
    --secondary-color: #FFD700;
    --bg-color: #f8f9fb;
    --card-bg: #ffffff;
    --text-primary: #1a202c;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --input-focus: #0B4C8C;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0B4C8C 0%, #1565C0 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
body::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

body::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.auth-card {
    background: linear-gradient(to bottom right, #ffffff, #fafbfc);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 76, 140, 0.1);
    width: 100%;
    transition: all 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 10px 30px rgba(11, 76, 140, 0.15);
    transform: translateY(-2px);
}

.auth-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.auth-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.auth-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.form-group label i {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(11, 76, 140, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.auth-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #083a6d 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 76, 140, 0.35);
}

.auth-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
}

.auth-btn i {
    font-size: 0.875rem;
}

.auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #083a6d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.25rem 1.25rem;
    }
    
    .auth-header h2 {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    
    .auth-card {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .auth-header h2 {
        font-size: 1.375rem;
    }
    
    .auth-logo {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .auth-logo img {
        width: 60px;
        height: 60px;
    }
}
