body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #282828;
    padding: 0;
    margin: 0 auto;
}

.white-section {
    padding: 20px;
    position: relative;
    flex: 1; 
}

.form-container {
    width: 100%;
    max-width: 702px;
    background-color: #fff;
}

.form-container h1 {
    font-weight: 500;
    text-align: center;
    color: #0e0e0e;
}

.form-container .subheading {
    font-size: 16px;
    font-weight: 400;
    color: #505050;
    text-align: center;
    margin-bottom: 40px;
}

.form-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #282828;
}

.form-check-label {
    color: #505050;
}

.form-control,
.form-select {
    border: 1px solid #cccccc;
    border-radius: 5px;
    height: 46px;
    padding: 10px;
    width: 100%;
}

.form-control::placeholder,
.form-select::placeholder {
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    color: #9a9a9a;
}

.form-group {
    margin-bottom: 20px; /* Adjust the value as needed */
}

.form-input {
    margin-bottom: 20px; /* Add space between validate captcha and submit button */
}

.submit-button {
    margin-top: 20px; /* Add space above the submit button */
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.input-icon img {
    width: 20px;
    height: 20px;
}

.toggle-password {
    color: #9A9A9A;
    cursor: pointer;
    position: absolute;
    top: 40px;
    font-size: 20px;
    right: 15px;
}

/* Update the submit button styles */
.submit-button {
    width: 160px;
    height: 40px;
    color: #FFF !important;
    background-color: #0040C3 !important; /* Ensure the background color is applied */
    border: 1.345px solid #0040C3 !important; /* Changed from #FFF to #0040C3 */
    border-radius: 10px; /* Rounded corners */
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    margin: 20px auto 0 auto; /* Center the button and add top space */
    display: block;
    flex-shrink: 0;
    box-shadow: none !important; /* Remove any box shadow */
    outline: none !important; /* Remove any outline */
    background-image: none !important; /* Remove any background image */
    transition: all 0.3s ease; /* Optional: for smooth hover effect */
    margin-top: 20px; /* Adjust the value as needed */
}

.submit-button:hover {
    opacity: 0.9; /* Optional: add hover effect */
}

/* Add space between form groups */
.form-group + .form-group {
    margin-top: 20px; /* Adjust the value as needed */
}

#username, #password {
    background-color: #ffffff !important; 
}



/* Mobile devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .white-section {
        padding: 20px;
    }

    .custom-container{
        padding-top: 1rem;
    }

    .form-container {
        width: 100%;
        max-width: 100%;
        padding: 10px !important; 
    }

    .social-login-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .form-container h1 {
        font-size: 24px;
    }

    .form-container .subheading {
        font-size: 14px;
    }

    .form-group .form-control {
        height: 40px;
        font-size: 12px;
    }

    .submit-button {
        width: 140px;
        height: 36px;
        font-size: 12px;
    }

    
}

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

@media (min-width: 768px) and (max-width: 1023.98px) {
    .custom-container {
        padding-top: 1rem;
    }

    .white-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .form-container{
        padding: 0 20px !important;
    }

    
}
