.auth-form-wrapper {
    max-width: 400px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-form-wrapper h2 {
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
}

.auth-form-wrapper p {
    margin-bottom: 2rem;
    color: #475569;
    text-align: center;
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.auth-form input[type="email"] {
    padding: 0.7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.auth-form input[type="email"]:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.form-submit-btn {
    padding: 0.8rem 1rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.password-reset-done {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.password-reset-done h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.password-reset-done p {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.password-reset-confirm {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.password-reset-confirm h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.password-reset-confirm .form-group {
    margin-bottom: 1.5rem;
}

.password-reset-confirm label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.password-reset-confirm input[type="password"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.password-reset-confirm input[type="password"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.password-reset-confirm .error {
    margin-top: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
}

.password-reset-confirm .btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #3b82f6;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.password-reset-confirm .btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.password-reset-confirm .alert {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.password-reset-complete {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.password-reset-complete h2 {
    font-size: 1.8rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.password-reset-complete p {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 2rem;
}

.password-reset-complete .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3b82f6;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.password-reset-complete .btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

