:root {
    --deep-teal: #05668d;
    --mid-teal: #028090;
    --mint: #02c39a;
    --soft-cream: #f0f3bd;
    --accent-green: #00a896;
    --dark-slate: #1e2f3e;
    --gray-light: #f8fafc;
    --border-light: #e2edf2;
    --error-red: #e63946;
}

body {
    background: #f8fafc;
    color: #1e2f3e;
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Login Section Container */
.login-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fefd 0%, #f0f8fa 100%);
    font-family: 'Google Sans', sans-serif;
}

.login-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Login Card */
.login-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 25px 45px -12px rgba(5,102,141,0.2);
    overflow: hidden;
    border: 1px solid rgba(2,195,154,0.2);
}

/* Card Header */
.login-header {
    background: var(--deep-teal);
    padding: 32px 32px 28px;
    text-align: center;
    color: white;
}

.login-icon {
    background: rgba(255,255,255,0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.login-icon .material-symbols-outlined {
    font-size: 36px;
    color: white;
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.login-header p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Card Body */
.login-body {
    padding: 32px;
}

/* Form Group */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.form-group label .material-symbols-outlined {
    font-size: 1.2rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .material-symbols-outlined {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 1.2rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--border-light);
    border-radius: 48px;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(2,195,154,0.1);
}

/* Form Options Row */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4b5563;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent-green);
}

.forgot-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: var(--deep-teal);
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: var(--mint);
    color: #0a2b2f;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    font-family: 'Google Sans', sans-serif;
    margin-bottom: 24px;
}

.login-btn:hover {
    background-color: #00b38a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(2,195,154,0.3);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}

.divider span {
    padding: 0 16px;
}

/* Sign Up Link */
.signup-prompt {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: #4b5563;
}

.signup-prompt a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    margin-left: 6px;
}

.signup-prompt a:hover {
    text-decoration: underline;
    color: var(--deep-teal);
}

/* Error Message */
.error-message {
    background: #fee2e2;
    color: var(--error-red);
    padding: 12px 16px;
    border-radius: 48px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message .material-symbols-outlined {
    font-size: 1rem;
}

/* Success Message */
.success-message {
    background: #e0f7e8;
    color: var(--accent-green);
    padding: 12px 16px;
    border-radius: 48px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Demo data protection badge */
.demo-badge {
    text-align: center;
    margin-top: 20px;
    font-size: 0.7rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 520px) {
    .login-section {
        padding: 48px 0;
    }
    .login-header {
        padding: 24px 20px;
    }
    .login-header h2 {
        font-size: 1.5rem;
    }
    .login-body {
        padding: 24px;
    }
    .sso-options {
        flex-direction: column;
    }
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}
