    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f0f4ff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .container {
        display: flex;
        width: 850px;
        background-color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        overflow: hidden;
    }
    .left-panel {
        flex: 1;
        background-color: #eef7ff;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left-panel img {
        max-width: 90%;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }
    .left-panel img:hover {
        transform: scale(1.3);
    }
    .right-panel {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .logo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        transition: transform 0.3s ease-in-out;
        border-radius: 50%;
        overflow: hidden;
        margin-top: 20px; /* Added small offset from the header */
    }
    .logo img {
        width: 100%;
        height: 100%;
    }
    .logo:hover {
        transform: scale(1.1);
    }
    h1 {
        margin-bottom: 20px;
        color: #333;
        transition: transform 0.3s ease-in-out;
    }
    h1:hover {
        transform: scale(1.1);
    }

    /* Set all input fields to have the same width */
    input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
        width: 100%;  /* All inputs have 100% width */
        max-width: 330px;  /* Increased width for mobile number input */
        padding: 12px;  /* Same padding for all input fields */
        margin-bottom: 10px; /* Consistent margin between input fields */
        border: 2px solid #007bff;
        border-radius: 5px;
        font-size: 14px;  /* Consistent font size */
        outline: none;
        transition: all 0.3s ease-in-out;
    }

    input[type="tel"] {
        padding-left: 40px;  /* Space for the country code input */
    }

    input:hover {
        border-color: #0056b3;
        background-color: #f0f8ff;
    }

    .iti {
        width: 120%;
    }

    .Mobile-no {
        font-size: 14px;
        margin-top: 5px;
        padding-bottom: 10px;  /* Space for the country code input */
    }

    .password-help {
        font-size: 14px;
        color: #666;
        margin-top: 0px;
        padding-bottom: 15px;  /* Space for the country code input */
    }

    button {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    }

    button:hover {
        transform: scale(1.1);
        background-color: #0056b3;
    }

    button.google {
        background-color: #db4437; /* Red color for Google button */
        margin-top: 15px; /* Added space between other buttons and Google button */
    }

    button.google:hover {
        background-color: #c5382e;
        transform: scale(1.1);
    }

    a {
        margin-top: 10px;
        text-align: center;
        color: #007bff;
        text-decoration: none;
        font-size: 14px;
        display: block;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    a:hover {
        text-decoration: underline;
        color: #0056b3;
        transform: scale(1.1);
    }

    /* Responsive styles */
    @media (max-width: 900px) {
        .container {
            flex-direction: column;
            width: 90vw;
            height: auto;
            max-width: 400px;
        }
        .left-panel, .right-panel {
            flex: none;
            width: 90%;
            padding: 20px;
        }
        .right-panel {
            padding: 20px 20px 40px 20px;
        }
        .left-panel img {
            max-width: 90%;
            transform-origin: center;
        }
        .logo {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }
        h1 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
            max-width: 90%;
            font-size: 16px;
        }
        button {
            font-size: 18px;
        }
        .iti {
            width: 110% !important;
        }
    }

    @media (max-height: 600px) {
        body {
            height: auto;
            padding: 20px 0;
        }
        .container {
            height: auto;
        }
    }
