
        .login-body {
            background-color: var(--sidebar-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .login-card {
            background: var(--text-white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 450px;
        }
        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .login-header h1 {
            color: var(--brand-orange);
            font-size: 1.8rem;
        }
        .login-header h1 span {
            color: var(--text-slate-800);
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-slate-500);
            font-size: 0.875rem;
        }
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--text-slate-300);
            border-radius: 8px;
            font-size: 1rem;
        }
        .btn-submit {
            width: 100%;
            padding: 12px;
            background-color: var(--brand-orange);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .btn-submit:hover {
            background-color: var(--brand-orange-dark);
        }
        .message {
            font-size: 0.875rem;
            text-align: center;
            margin-top: 15px;
            display: none;
        }
        .message.error { color: var(--danger-red); }
        .message.success { color: var(--success-green); }
        .links {
            text-align: center;
            margin-top: 20px;
            font-size: 0.875rem;
        }
        .links a {
            color: var(--info-blue);
            text-decoration: none;
        }
