/* Auth Pages Styles */

.auth-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.auth-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-hero p {
    opacity: 0.9;
}

.auth-section {
    padding: 3rem 0;
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #7a85ff;
    box-shadow: 0 0 0 3px rgba(122, 133, 255, 0.15);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.form-actions .link {
    color: #7a85ff;
    text-decoration: none;
}

.form-actions .link:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.25rem;
    }
}





