/* Auth pages — shadcn Card layout */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: var(--canvas, #E8EBED);
    font-family: "Inter", "Noto Sans TC", -apple-system, sans-serif;
}

.auth-wrap {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--background, #fff);
    border: 1px solid var(--border, #E4E4E7);
    border-radius: var(--radius-xl, 20px);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg, 0 12px 32px rgba(0,0,0,0.1));
}

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

.auth-logo {
    height: 56px;
    margin-bottom: 16px;
    object-fit: contain;
}

.auth-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--foreground, #0A0A0A);
}

.auth-subtitle {
    font-size: 14px;
    color: var(--muted-foreground, #71717A);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--muted-foreground, #71717A);
    font-size: 13px;
}

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

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted-foreground, #71717A);
}

.auth-footer a {
    color: var(--foreground, #0A0A0A);
    font-weight: 600;
    text-decoration: none;
}
.auth-footer a:hover {
    text-decoration: underline;
}

.btn-line {
    width: 100%;
    background: #06C755 !important;
    color: #fff !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-page .btn-primary {
    width: 100%;
}

.auth-page .alert {
    border-radius: var(--radius-md, 10px);
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 28px 22px;
    }
}
