.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-app), var(--color-primary-dark));
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
    padding: 34px 30px;
}

.login-logo {
    text-align: center;
    margin-bottom: 8px;
}
.login-logo .logo-badge {
    width: 56px; height: 56px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.login-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.login-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.15);
}

.btn-block { width: 100%; justify-content: center; padding: 12px; margin-top: 4px; }

#login-message { margin-bottom: 14px; }
#login-message:empty { margin-bottom: 0; }
