body {
            font-family: 'DM Sans', sans-serif;
            background-color: #000;
            /* Fallback */
            /* This adds a dark overlay to the image to create the transparency effect */
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/sarawak.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
.login-logo {
        max-width: 180px; /* Adjust size as needed */
        height: auto;
        display: block;
        margin: 0 auto 20px auto; /* Centers the logo and adds bottom margin */
}

.login-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 400px;
}

.login-header { text-align: center; margin-bottom: 32px; }
.login-header h2 { font-size: 1.5rem; margin-bottom: 8px; color: #111827; }
.login-header p { color: #6b7280; font-size: 0.95rem; line-height: 1.5; }
.btn { width: 100%; padding: 12px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; font-size: 0.95rem; transition: 0.2s; }
.btn-primary { background: var(--primary-red); color: white; }
.btn-primary:hover { background: var(--primary-red-hover); }
.login-actions { margin-top: 28px; }
.btn-azure { background: white; border: 1px solid #d1d5db; color: #374151; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; }
.btn-azure:hover { background: #f9fafb; }
