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-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #505050;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    height: 46px;
    padding: 10px 15px;
    font-size: 16px;
}

.form-control::placeholder {
    color: #9a9a9a;
}

/* 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 */
}



/* 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; 
    }

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

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

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

    .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: 20px !important;
    }

    
}
