   @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


     :root {
            --dark-green: #0A2520;
            --grid-color: rgba(255, 255, 255, 0.1);
        }


        *{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

        .main-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 100%;

            position: relative;
            z-index: 2;
        }

        .login-section {
            width: 510px;
            padding: 20px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }

        .login-form {
            background: white;
            padding: 40px;
            border-radius: 12px;
            width: 100%;
            -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .brand-section {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            padding-left: 60px;
        }

        .brand-logo {
            width: 550px;
            height: auto;
        }

        .login-form h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            font-family:  "Roboto", serif;
            line-height: 43.2px;
        }


   

.remember-and-agree {
        font-family: Roboto !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        color: #2A343E !important;
    }

    .forgot-pass {
        font-family: Roboto;
        color: #1D9593 !important;
    }
        

        .form-control {
            padding: 12px;
            border: 1px solid #e1e1e1;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        

        .btn-sign-in {
            width: 100%;
            padding: 12px;
            background-color: #212529;
            border: none;
            border-radius: 6px;
            color: white;
            font-weight: 500;
            margin-top: 20px;
        }

        /* .btn-sign-in:hover {
            background-color: #0a0c0d;
        } */

        .forgot-password {
            display: block;
            margin-top: 20px;
            color: #212529;
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        

         

        .form-control:focus {
            background-color: white;
            -webkit-box-shadow: 0 0 0 0.2rem rgba(10, 37, 32, 0.15);
                    box-shadow: 0 0 0 0.2rem rgba(10, 37, 32, 0.15);
            border-color: #0A2520;
        }

        .password-field {
            position: relative;
            margin-bottom: 20px;
        }

        .password-field .form-control {
            margin-bottom: 0;
            padding-right: 40px;
        }

        .password-toggle {
            position: absolute;
            right: 12px;
            top: 33%;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
            border: none;
            background: none;
            padding: 0;
            color: #6c757d;
            cursor: pointer;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            width: 24px;
            height: 24px;
        }

        .password-toggle:hover {
            color: #0A2520;
        }

        .password-toggle:focus {
            outline: none;
            color: #0A2520;
        }

.form-label-heading{
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    width: 400px;
    height: 22px;
     margin-bottom: 8px;
}




.login-page{
background: url('/assets/images/Maor_Welcome page.png');
width: 100%;
height: 100vh;
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.onboarding-page{
background: url('/assets/images/Maor_Welcome page_blank.png');
width: 100%;
height: 100vh;
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


<style>
    .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .onBoardingForm {
        width: 634px;
        max-height: 80vh;
        /* Limits the height to 80% of the viewport height */
        padding: 35px;
        border-radius: 32px;
        background: #FFFFFF;
        border: 1px solid #FFFFFF52;
        -webkit-box-shadow: 8px 8px 40px 0px #0000001F;
                box-shadow: 8px 8px 40px 0px #0000001F;
        -webkit-backdrop-filter: blur(100px);
                backdrop-filter: blur(100px);
        overflow-y: auto;
        /* Ensures scroll stays inside */
        overflow-x: hidden;
        scrollbar-width: thin;
        /* Makes the scrollbar smaller */
        scrollbar-color: #ccc transparent;
        /* Optional: Custom scrollbar color */
    }

    form::-webkit-scrollbar-button {
        display: none;
    }

    /* For Chrome, Safari, and Edge */
    form::-webkit-scrollbar {
        width: 6px;
        /* Thin scrollbar */
    }

    form::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 6px;
    }

    form::-webkit-scrollbar-track {
        background: transparent;
    }

    .onBoardingTopHeading {
        font-family: Roboto;
        font-weight: 700;
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .onboardingLabelsStyling {
        font-family: Roboto;
        font-weight: 500;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 2%;
    }

    .certifiedDivStyling {
        font-family: Roboto;
        font-weight: 400;
        font-size: 15px;
        line-height: 140%;
        letter-spacing: 2%;
    }

    .onboardingGuidanceHeading {
        font-family: Roboto;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 2%;
    }

    .subText {
        font-family: Roboto;
        font-weight: 400;
        font-size: 13px;
        line-height: 140%;
        letter-spacing: 2%;
    }

    .onboardingGuidanceExamples {
        font-family: Roboto;
        font-weight: 500;
        font-size: 15px;
        line-height: 140%;
        letter-spacing: 2%;
    }

    .continueBtn {
        width: 560px;
        height: 40px;
        padding: 8px 16px 8px 16px;
        gap: 8px;
        border-radius: 6px;
        background: #082E2A;
        -webkit-box-shadow: 0px 1px 3px 0px #1018281A;
                box-shadow: 0px 1px 3px 0px #1018281A;
        -webkit-box-shadow: 0px 1px 2px -1px #0000001A;
                box-shadow: 0px 1px 2px -1px #0000001A;
        color: #FFFFFF;
    }
</style>



@media (max-width: 992px) {
            .main-container {
                -webkit-box-orient: vertical;
                -webkit-box-direction: reverse;
                    -ms-flex-direction: column-reverse;
                        flex-direction: column-reverse;
                height: auto;
            }
            .login-section {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            .brand-section {
                padding-left: 0;
                margin-bottom: 40px;
            }
            .brand-logo {
                width: 200px;
            }
        }