/* ─── Login page styles (extracted from inline <style>) ─── */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 800;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
}

.login-logo .logo-img {
    height: 32px;
}

.login-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.login-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.login-form .form-control {
    margin-bottom: 16px;
}

.login-submit-btn {
    font-size: 16px;
    padding: 14px;
}

.success-msg {
    color: #16a34a;
    display: none;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: var(--radius-sm);
    border: 1px solid #bbf7d0;
}
