body {
    width: 100%;
    overflow-x: hidden;
}

#left-side {
    height: 100vh;
    background-image: url("/assets/images/background/vertical/reg-bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#right-side {
    padding-left: 50px;
    margin-block: auto;
    height: 100vh;
    overflow-y: scroll;
}
#right-side::-webkit-scrollbar {
    width: 20px !important;
}
#right-side::-webkit-scrollbar-track {
    width: 20px !important;
    background: #ff5722 !important;
}

#right-side::-webkit-scrollbar-thumb {
    width: 20px !important;
    background: black !important;
}
#right-side h3 {
    color: #000000;
    font-weight: 700;
    font-size: 24px;
    margin-top: 50px;
}

#right-side h6 {
    color: #606060;
    font-weight: 300;
    font-size: 14px;
}

#submit-btn {
    background-color: #ff5722;
    color: white;
    width: 100%;
    border-radius: 30px;
    height: 48px;
}
#login-form {
    width: 90%;
}

@media screen and (max-width: 700px) {
    #left-side {
        display: none;
    }

    #right-side {
        padding-inline: 40px;
        margin-block: 20px;
        padding-block: auto;
        /* height: 140vh; */
        /* background-color: green; */
    }

    #login-form {
        width: 100%;
    }

    #right-side h3 {
        color: #000000;
        font-weight: 700;
        font-size: 24px;
        margin-top: 40px;
    }
}


