/* Login Page Styles */

#login-card h1 {
    text-align: center;
    margin-bottom: 4px;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    color: var(--text-light, #666);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Google Button */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #333);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-google:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-google svg {
    flex-shrink: 0;
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9375rem;
    color: var(--text-light, #666);
}

.auth-switch-btn {
    background: none;
    border: none;
    color: var(--accent-orange, #ff8c42);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9375rem;
    font-family: inherit;
    padding: 4px 8px;
    margin-left: 4px;
    transition: color 0.2s;
}

.auth-switch-btn:hover {
    color: #e67a2e;
    text-decoration: underline;
}
