* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    color: #111827;
}

.login-wrapper,
.dashboard {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card,
.dashboard-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.site-logo {
    display: block;
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
}

h1 {
    margin: 0 0 24px;
    text-align: center;
    font-size: 28px;
}

label {
    display: block;
    margin: 12px 0 6px;
    font-size: 14px;
    font-weight: 700;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    font-size: 15px;
}

button,
.logout {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.error {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 8px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 14px;
    text-align: center;
}

.site-footer {
    margin-top: 10px;
    padding: 8px 16px 28px;
    text-align: center;
    color: #737373;
    font-size: 12px;
    line-height: 1.6;
}

.footer-report {
    margin: 0 0 28px;
    color: #737373;
    font-size: 14px;
}

.footer-report a {
    color: #00376b;
    font-weight: 600;
    text-decoration: none;
}

.footer-links {
    max-width: 720px;
    margin: 0 auto 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
}

.footer-links a {
    color: #737373;
    text-decoration: none;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: #737373;
}