        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 20px;
        }
        .row {
            display: flex;
            flex-wrap: wrap; /* Enables wrapping */
        }
        .col-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 15px;
            box-sizing: border-box;
        }
        .left-section {
            background: linear-gradient(to bottom, rgba(254, 101, 36, 0.8), rgba(255, 199, 0, 0.8)), url("/assets/landing/image/background-img.png");
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 50px;
        }
        .left-section p1{
            font-size: 19px;
            font-weight: 400;
            font-family: "Nunito", serif;
            color: white;
            margin-bottom: 10px;
        }
        .left-section p2{
            font-size: 19px;
            font-weight: 700;
            font-family: "Nunito", serif;
            color: white;
            margin-bottom: 10px;
        }
        .left-section img {
            max-width: 100%;
            margin-bottom: 20px;
        }
        .log-img {
            width: 40%;
            margin: 0 auto;
            display: block;
        }
        .left-section h1 {
            font-size: 46px;
            font-weight: 600;
            font-family: "Roboto Slab", sans-serif;
            color: white;
            margin-bottom: 10px;
        }
        .left-section h2 {
            font-size: 38px;
            font-weight: 500;
            font-family: "Roboto Slab", serif;
            color: white;
            margin-bottom: 10px;
        }
        .right-section {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .form-container {
            width: 100%;
            max-width: 400px;
        }
        .form-container h2 {
            font-size: 30px;
            font-weight: 600;
            font-family: sans-serif;
            text-align: center;
            margin-bottom: 6px;
            margin-top: -10px;
        }
        .para{
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            font-family: sans-serif;
        }
        .form-container label {
            display: block;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 5px;
            font-family: "Nunito", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }
        .form-container input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ffc1a8;
            border-radius: 11px;
            font-size: 16px;
            font-family: "Nunito", serif;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); 
        }
        .form-container button {
            padding: 10px;
            width: 100%;
            border: none;
            border-radius: 5px;
            background: linear-gradient(to right, #ff9800, #ffc107);
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        .form-container button:hover {
            opacity: 0.9;
        }
        .form-container .text-muted ul {
            font-size: 0.85rem;
            list-style: none;
            padding: 0;
            font-family: "Nunito", serif;
        }
        .form-container .text-muted ul li {
            margin-bottom: 5px;
        }
        .form-container .text-muted ul li::before {
            color: #fdd7cb;
        }
        .text-center {
            text-align: center;
        }
        .mt-3 {
            margin-top: 15px;
        }
        .d-grid {
            display: grid;
        }
        .alert {
            background: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            text-align: center;
        }
        .password-container {
            position: relative;
        }

        .password-container input {
            width: 100%;
            /* padding-right: 40px; Space for the eye icon */
        }

        .password-container .toggle-password {
            position: absolute;
            right: -10px;
            top: 40%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 18px;
            color: #555;
        }
        .text-muted {
            font-size: 14px;
            margin-top: 10px;
        }

        .text-muted ul {
            list-style: none;
            padding: 0;
        }

        .text-muted li {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .text-muted li i {
            margin-right: 5px;
            /* color: #fdd7cb; */
        }
        .valid i {
            color: green;
        }
        .invalid i {
            color: red !important; /* Red cross ✖ */
        }
        /* ✅ RESPONSIVENESS */
        @media (max-width: 768px) {
            .row {
                flex-direction: column; /* Stacks elements vertically */
                align-items: center;
            }
            .col-6 {
                max-width: 100%;
                flex: 0 0 100%;
            }
            .left-section {
                padding: 30px;
                border-radius: 20px;
            }
            .right-section {
                padding: 0px;
            }
            .right-section h2{
                font-size: 20px;
            }
            .left-section img {
                width: 80%;
            }
            /* .left-section h2 {
                font-size: 15px;
                margin-top: 100px;
            } */
            .form-container {
                max-width: 100%;
                padding: 20px;
            }
        }
