    /* General Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



    .container {
        width: 100%;
        /* max-width: 600px; */
        padding: 20px;
    }

    .form-container {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    h2 {
        font-size: 24px;
        color: #333;
        text-align: center;
    }

    .form-description {
        text-align: center;
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
    }

    h3.section-title {
        font-size: 18px;
        color: #ab42c0;
        margin-bottom: 10px;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .input-group label {
        font-size: 14px;
        color: #666;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-top: 5px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .input-group input:focus {
        border-color: #3498db;
        outline: none;
    }

    .verify-btn {
        width: 100%;
        padding: 14px;
        background-color: #3498db;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .verify-btn:hover {
        background-color: #2980b9;
    }

    .verify-btn:active {
        background-color: #1c6ea4;
    }

    .status-message {
        text-align: center;
        font-size: 16px;
        color: #2ecc71;
        margin-top: 20px;
    }

    @media (max-width: 768px) {
        .form-container {
            padding: 20px;
        }
    }






    body {
        background-color: #f4f6f8;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        line-height: 1.6;
    }

    .container {
        margin-top: 30px;
    }

    .form-section {
        background-color: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .form-section {
        border-right: 1px solid #e9ecef;
    }

    h2 {
        margin-bottom: 20px;
        color: #fff;
        font-weight: 500;
    }

    label {
        font-weight: 500;
    }

    .btn-custom {
        background-color: #ab42c0;
        color: #fff;
        border: none;
        margin-top: 10px;
    }

    .btn-custom:hover {
        background-color: #434190;
    }

    .collapseDiv {
        cursor: pointer;
        color: #fff;
        background-color: #5a67d8;
        padding: 4px;
        padding-left: 10px;
        border-radius: 5px;
    }

    @media (max-width: 767px) {
        .form-check-inline {
            display: block;
            margin-bottom: 0.5rem;
        }
    }

    .detail-div {
        color: #fff;
        background-color: #5a67d8;
        padding: 4px;
        padding-left: 10px;
        border-radius: 5px;
        margin-bottom: 5px;
    }

    .group-heading {
        border-bottom: 1px solid #bbb;
        /* color: #5a67d8; */
    }

    #submit-button:hover {
        color: #fff;
    }

    /* Full-screen loader */
    .loader {
        display: none;
        /* Initially hidden */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        /* Semi-transparent background */
        z-index: 9999;
        /* Make sure it appears above everything */
    }

    .loader-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        font-size: 24px;
    }

    .spinner {
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin-top: 20px;
        margin-left: 40px;
    }

    /* Spinner animation */
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .successDiv {
        text-align: center;
        align-items: center;
    }

    .successDiv img {
        width: 5%;
    }

    /* Main banner styling */
    .bannerMainDiv {
        background-color: #ac42c0;
        border-radius: 10px;
    }

    .bannerDiv {
        padding: 20px;
    }

    .bannerDiv h1 {
        font-family: "Merriweather", serif;
        color: #f8f9fa;
    }

    .bannerDiv p {
        font-family: "Montserrat", sans-serif;
        color: #f8f9fa;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .bannerDiv a {
        color: #fff;
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
    }

    .bannerDiv a:hover {
        color: #f8f9fa;
    }

    .bannerDiv img {
        width: 40%;

    }

    @media (max-width: 1454px) {
        .bannerDiv img {
            width: 58%;
        }
    }

    @media (max-width: 1226px) {
        .bannerDiv img {
            width: 80%;
        }
    }

    @media (max-width: 991px) {
        .bannerDiv img {
            width: 90%;
        }
    }

    @media (max-width: 768px) {
        .bannerDiv img {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .bannerDiv {
            padding: 2px;
        }

        .bannerDiv h1 {
            font-size: 12px;
        }

        .bannerDiv p {
            font-size: 7px;
        }

        .bannerDiv .col-lg-6,
        .bannerDiv .col-lg-4 {
            text-align: center;
        }

        .bannerDiv img {
            margin: 0 auto;
            display: block;
        }
    }

    #loading-message {
        padding: 5px 10px;
        background-color: rgba(0, 0, 0, 0.7);
        text-align: center;
        color: #fff;
        border-radius: 5px;
    }
