/* login.css */
.login-page {
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.login-box {
    width: 100%;
    max-width: 380px;
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    height: 52px;
    width: auto;
}

.login-logo-label {
    margin-top: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.login-form .form-group { margin-bottom: 14px; }

.login-submit {
    width: 100%;
    padding: 11px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    justify-content: center;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

.login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}