/* ─── Login Page Styles ─── */
/* Matches the modern, minimal aesthetic of the dashboard */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #111;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 24px;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 48px 48px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.login-logo {
    margin-bottom: 8px;
}

.login-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111;
    margin: 0;
}

.login-subtitle {
    font-size: 14px;
    color: #888;
    margin: 0 0 24px 0;
    font-weight: 400;
}

.login-button-area {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 8px 0 16px 0;
    min-height: 44px;
}

.login-error {
    background: #fff0f0;
    color: #cc3333;
    border: 1px solid #ffdddd;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}

.login-hint {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

.login-hint strong {
    color: #666;
    font-weight: 600;
}

.login-footer {
    margin-top: 32px;
    text-align: center;
}

.login-footer p {
    font-size: 12px;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
    .login-card {
        padding: 36px 24px;
        border-radius: 12px;
    }

    .login-title {
        font-size: 24px;
    }
}
