/* ─── Base ─── */
body {
    background: #f4f6f9;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
}

/* ─── Auth pages (login / register) ─── */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 440px;
}

.auth-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.auth-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 28px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    color: #6c757d;
}

.auth-footer a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.qr-img {
    max-width: 200px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

.forgot-link {
    font-size: 0.9rem;
    color: #0d6efd;
    text-decoration: none;
}

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

/* ─── Dashboard ─── */
.dashboard-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.welcome-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.welcome-title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.welcome-text {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}
