.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--text);
}

.nav-email {
    font-size: 13px;
    color: var(--text-muted);
}

.flash-bar {
    background: var(--flash-bg);
    border-bottom: 1px solid var(--flash-border);
    padding: 10px 24px;
    color: var(--flash-text);
    font-size: 14px;
}

.flash-bar p {
    margin: 0;
}

.auth-wrap {
    display: flex;
    justify-content: center;
    padding: 64px 24px;
}

.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.auth-hint {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-hint a {
    color: var(--accent);
    text-decoration: none;
}

.auth-card label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.auth-card input[type="email"] {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    font-size: 15px;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
}

.flash-list {
    list-style: none;
    background: var(--flash-bg);
    border: 1px solid var(--flash-border);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
    color: var(--flash-text);
    font-size: 14px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.1s;
}

.btn-google:hover {
    background: #f5f5f5;
    text-decoration: none;
}

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

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 12px;
}
