/* Authentication Page - Modern SaaS Design */

.auth-screen {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%); /* Subtle gradient background */
    padding: 24px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
    /* Card styling is handled by .card class from main.css */
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.logo-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.auth-header p {
    color: #6B7280;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

.auth-tabs {
    justify-content: center;
    margin-bottom: 32px;
    /* nav-tabs styling is handled by main.css */
}

.auth-form {
    margin-bottom: 24px;
}

.auth-form.hidden {
    display: none;
}

.auth-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.auth-footer p {
    margin: 0;
}

/* Responsive Design for Auth */
@media (max-width: 480px) {
    .auth-screen {
        padding: 16px;
    }
    
    .auth-container {
        padding: 32px 24px;
    }
    
    .logo-icon {
        width: 56px;
        height: 56px;
    }
    
    .logo-icon i {
        font-size: 24px;
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
    
    .auth-header p {
        font-size: 14px;
    }
    
    .auth-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
} 