.h-screen{
    height: 100vh;
}

.rounded-md{
    border-radius: 18px;
}

.login-page{
    background: linear-gradient(to right,rgba(0,0,0, .3),rgba(0,0,0, .3) ),url(../images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-form .form-input{
    background: #EDEDED!important;
    height: 60px;
    font-size: 20px;
    border-radius: 4px;
    padding: 6px 12px;
}

.login-form .form-input::placeholder{
    color: #737373;
}

.login-form .btn-login{
    background: #4382C5;
    color: white;
    border-radius: 6px;
    padding: 10px 26px;
    height: 50px;
    margin-top: 24px;
}

.login-wrapper {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
}

.login-background {
    background-image: url('../../images/login-background-v3.png');
    width: 65vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 1;
}

.login-background::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.login-form {
    background-image: url('../../images/login-background-2-v4.png');
    width: 35vw;
    /* padding: 350px 55px 55px; */
    background-color: #F7F7F7;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.login-form form {
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translateX(-50%);
    width: 30vw;
}

.btn-login {
    width: 30vw;
}

@media (max-width: 576px) {
    .login-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 70px;
        display: flex;
        align-items: center;
        width: 100% !important;
        background-size: contain;
        /* background-position: 50% -100%; */
    }

    .login-form form {
        width: 90vw;
    }

    .btn-login {
        width: 90vw;
    }

    .h-screen.login-wrapper .login-background {
        width: 0 !important;
    }
}
