body{
    background-color: rgb(248, 246, 241);
}

/*login video css
*/
.login-video-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.login-header{}
.login-header h5{
    font-size: 22px;
    font-weight: 400;
    color: rgb(38, 38, 39);
    margin-top: 0px;
    line-height: 140%;
}
.login-header h5 span{
    font-weight: 700;
    display: block;
}
.login-video-content{
    /*position: relative;*/
    /*left: 0;*/
    /*right: 0;*/
    height: 100%;
    /*bottom: 0;*/
}
 video.login__video {
    position: absolute;
    top: 50%;
    /*left: 49.9%;*/
    transform: translate(-50%, -50%);
    min-width: 101%;
    min-height: 102%;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    background-size: cover;
    animation: 1s ease-out 0s 1 normal none running eMLfYp;
    background-repeat: no-repeat;
    background-position: center center;
}

.play-button {
    opacity: 0;
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease 0s!important;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px;
    outline: none;
    width: 75px!important;
    height: 75px!important;
    z-index: 999;
    color: rgba(0, 0, 0, 0.87);
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 6px 10px 0px rgba(0,0,0,0.14), 0px 1px 18px 0px rgba(0,0,0,0.12);
    background-color: #e0e0e0;
    border-radius: 50%;
}

.login-video-wrapper:hover .play-button {
    opacity: 0.9;
}
 .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    outline: 0px;
    background: rgb(255, 255, 255);
}

 /*login form css*/
.login-form-section {
    width: 100%;
    padding: 0px 90px;
}
.login-form-section .login-logo {
    max-width: 200px;
    margin-bottom: 30px;
}
.login-form-section input{
    border: 0;
    border-radius: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    padding: 12px 0px;
    line-height: 22px;
    font-size: 20px;
    color: black;
}
.login-form-section input::placeholder{
    color:#827f7f;
}
.login-form-section input:focus{
    border-bottom: 1px solid rgb(125, 0, 254);
    outline: 0;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none ;
    box-shadow: none ;
}
.login-form-section .forgot__link{
    color: rgb(76, 217, 130);
    font-weight: 700;
    font-size:14px;
    text-decoration: underline ;
}
.login-form-section button.login-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    outline:0;
    border: none;
    transition: all 0.2s ease-in-out 0s;
    background: rgb(125, 0, 254);
    line-height: 22px;
    font-size: 18px;
    letter-spacing: 2.25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 24px;
}
.login-form-section button.login-btn:hover{
    transform: scale(1.03);
}

.remember--checkbox .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    border:0;
    background-color: rgb(76, 217, 130);
    box-shadow: none;
}
.remember--checkbox  .custom-control-label {
    font-size: 15px;
}
@media(max-width:991px){
    .login-form-section {
        padding: 0;
    }
}
@media(max-width:575px){
    .login-video-wrapper {
        display: none;
    }
    .login-form-section {
        flex-direction: column;
        padding-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-bottom {
        font-size: 12px;
    }
}