    /* ---------- Base Reset ---------- */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    }

    label {
        margin-bottom: 0.5rem;
        align-items: start;
        display: flex;
        justify-content: flex-start;
    }

    body {
    background: #ecedef; 
    }
    .switch-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 40px;
    }

    /* ---------- Container ---------- */
    .container-login {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 550px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* ---------- Left: Login Section ---------- */
    .login-section {
    flex: 1;
    padding: 0px;
    display: flex;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    position: relative;
    }

    .logo {
    width: 368px;
    margin: 0 0 25px 0;
    }

    .login-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    }

    .login-section p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 0.95rem;
    text-align: justify;
    }

    /* ---------- Input Group ---------- */
    .input-group {
    position: relative;
    margin-bottom: 20px;
    }

    .input-group label {
    display: block;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 5px;
    }

    .input-group svg {
    position: absolute;
    top: 46px;
    left: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #9ca3af;
    pointer-events: none;
    }

    .input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* space for icon */
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    transition: 0.3s;
    }

    .input-group input:focus {
    border-color: #066a86;
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 106, 134, 0.2);
    }

    /* ---------- Buttons ---------- */
    button {
    width: 100%;
    background: #066a86;
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    }

    button:hover {
    background: #055a72;
    }

    .extra-links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    }

    .extra-links a {
    color: #066a86;
    text-decoration: none;
    }

    .extra-links a:hover {
    text-decoration: underline;
    }

    /* ---------- Hero Section ---------- */
    .hero-section {
        flex: 1;
        position: relative;
        width: 100%;
        height: 650px; 
        overflow: hidden;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4); 
    }
    .hero-section img {
        width: 100%;
        height: 100%;
        object-fit: contain; 
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }
    .hero-section img.active {
        opacity: 1;
    }
    /* ---------- Knowledge Base Button ---------- */
    .knowledge-base-btn {
    margin-top: 40px;
    align-self: center;
    background: transparent;
    color: #066a86;
    border: 2px solid #066a86;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .knowledge-base-btn a {
    color: #066a86;
    text-decoration: none;
    }

    .knowledge-base-btn:hover {
    background: #066a86;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 106, 134, 0.3);
    }

    .knowledge-base-btn:hover a {
    color: #fff;
    }

    .container-login h1{
    color: #077c8c;
    font-weight: 600;
    text-align: justify;
    }

    /* ---------- Footer ---------- */
    footer {
    margin-top: 25px;
    color: #6b7280;
    font-size: 0.85rem;
    text-align: center;
    }

    /* ---------- Store Badges ---------- */
    .store-badges {
    text-align: center;
    margin-top: 25px;
    }

    .store-badges img {
    transition: transform 0.3s ease;
    }

    .store-badges img:hover {
    transform: scale(1.05);
    }
    /* ---------- Custom Checkbox ---------- */
    .custom-checkbox input[type="checkbox"] {
    display: none;
    }

    /* Create a custom checkbox box */
    .custom-checkbox .checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #066a86;
    border-radius: 3px;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
    }
    .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #066a86;
    }
    .custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
        .switch-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 10px 10px!important;
        }
        .container-login {
            flex-direction: column;
            max-width: 420px;
            min-height: auto;
        }

        .hero-section {
            display: none;
        }

        .login-section {
            padding: 40px 25px;
            width: 100%;
        }

        .input-group {
            text-align: left;
        }

        .extra-links {
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .knowledge-base-btn {
            margin-top: 30px;
        }

        .store-badges img {
            width: 120px;
        }
        .login-section .logo {
            content: url('https://publiclogos.sm8a.com.au/cropped-ComplianceTrackr-TEXT-Horizontal-Colour-Trans-1024x400px.png');
            width: 280px; 
            margin-bottom: 20px;
        }
        .hero-section {
            display: none;
        }
        .container-login h1{
            color: #077c8c;
            font-weight: 600;
            font-size: 2.0rem;
            text-align: center;
        }
    }
    /* Tablet view */
    @media (max-width: 1024px) and (min-width: 769px) {
        .hero-section {
            display: block;
            height: 550px; 
        }

        .hero-section img {
            object-fit: cover; 
            height: 100%;
        }
        .login-section {
            flex: 1;
            padding: 20px;
            display: flex;
            max-width: 500px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: #fff;
            position: relative;
        }
    }
    .pace-active,
    .pace{
        display: none !important;
    }
    .passwordStrengthForcer{
        text-align: left !important;
    }
    button[name="set_new_password"]:disabled {
        cursor: not-allowed;
        background: gray;
    }
    .toast-close-button{
        text-align: right !important;
    }

