*{
    padding:0;
    margin:0;
    box-sizing:border-box;
 }
 
 .vs-container-login{
    width:100vw;
    height:100vh;
    position: absolute;
    overflow:hidden;
    /* background-color: #66676f; */
 }
 
 .vs-container-login .img-background{
    width:100vw;
    height:100vh;
    position:absolute;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    /* filter:blur(2px); */
 }
 
 .login-frame{
    width:100vw;
    height:100vh;
    position: absolute;
    display:flex;
    align-items:center;
    justify-content:center;
 }
 
 .login-frame .vs-container-front-img{
    /* width:70vw; */
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:25px;
    position: absolute;
    background: white;
    border : 3px solid white;
    box-shadow: 8px 8px 6px 0 #0006;
    
 }
 .login-frame .vs-container-front-img .image-frame {
    height:70vh;
    position: relative;
    width: 600px;
 
 }
 
 .login-frame .vs-container-front-img .image-frame .img-back{
    height:100%;
    width: 100%;
 }
 .login-frame .vs-container-front-img .image-frame .img-front{
    position: absolute;
    z-index: 9;
    /* height: 100%; */
    /* width: 100%; */
    display: flex;
    padding: 20px;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
 }
 
 .login-frame .vs-container-front-img .vs-login{
    width:350px;
    height:100%;
    border-radius:25px;
    display:flex;
    background-image: url('../images/mac/background-red.png');
    align-items:center;
    justify-content:center;
    flex-direction:column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
 }
 .vs-login .vs--logo{
    width: 100px;
    height: 80px;
 
 }
 .vs-login .vs-title{
    font-size:16px;
    /* margin-bottom:3vh; */
    color:#FFF;
 }
 
 .vs-login .vs-form-group{
    width:70%;
 }
 
 .vs-login .vs-form-group .vs-d-flex{
    width:100%;
    display:flex;
    flex-direction: column;
 }
 
 .vs-login .vs-form-group .vs-d-flex .vs-form-label{
    color:#fff;
    font-size:14px;
    padding:15px 5px  5px;
 }
 
 .vs-login .vs-form-group .vs-d-flex .vs-form-control{
    width:100%;
    height:40px;
    border-radius:13px;
    border:2px solid #fff;
    background-color: #ee6b67;
    outline:none;
    padding:5px 15px;
    font-size:14px;
    color: #FFFFFFCC;
 
 }
 /* .vs-form-group .vs-d-flex .vs-form-control i {
   display: flex;
   padding-top: 100px;
 } */
 
 ::placeholder{
    font-size:14px;
    padding:5px;
    color: #FFFFFFCC;
 }
 
 .vs-login .vs-form-group .vs-d-flex-btn{
    /* padding:10px; */
    width:100%;
    margin-top:20px;
    display:flex;
    justify-content:center;
 }
 
 .vs-login .vs-form-group .vs-d-flex-btn .btn-login{
    width:50%;
    height:40px;
    border-radius:12px;
    border:2px solid #fff;
    background-color:#f7dcda;
    font-size:14px;
    font-weight: bold;
    color:#ff0000;
    cursor:pointer;
 }
 .vs-login .vs-form-group .vs-d-flex-btn .btn-login:hover{
    background-color: #fff;
    color: #ff0000;
 }
 
 .vs-login .vs-d-flex-copyright{
    width:100%;
    display:flex;
    height:20%;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    color:#fff;
    font-size:14px;
 }
 
 .vs-login .vs-form-login{
    /* height:80%; */
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
 }
 
 .vs-container-front-img .vs-d-flex-copyright p{
    padding:3px 0;
 }
 
 .error_text{
    color:rgb(136, 119, 22);
    font-size:12px;
 }
 
 .overlay-blur{
    width:100vw;
    height:100vh;
    position: absolute;
 }
 
 @media screen and (max-width:820px){
    .login-frame .vs-container-front-img{
        width:96vw;
    }
 }