.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .btn-block {
    margin-top: 8px;
    padding: 10px 16px;
    font-size: 15px;
}

/* Error page */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.error-container {
    text-align: center;
}

.error-container h1 {
    font-size: 72px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.error-container p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}
