.hidden {
    display: none !important;
}

#auth-view {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fb;
}

.auth-card {
    background: white;
    width: 360px;
    max-width: 90%;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-card h1 {
    font-size: 20px;
    margin-bottom: 0;
}

.auth-card p {
    color: #6b7280;
    margin-bottom: 8px;
}

.auth-card input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.auth-error {
    color: #d32f2f;
    font-size: 13px;
}

.auth-notice {
    color: #2563eb;
    font-size: 13px;
}

.auth-link {
    color: #2563eb;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 12px;
    margin: 4px 0;
}

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

.auth-google-btn {
    background: white;
    color: #374151;
    border: 1px solid #ddd;
}

.auth-google-btn:hover {
    background: #f3f4f6;
}

#userInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#userInfo button {
    background: transparent;
    color: #6b7280;
    border: 1px solid #ddd;
    padding: 6px 14px;
    font-size: 13px;
}

#userInfo button:hover {
    background: #f3f4f6;
}
