@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;800&display=swap');

* {
    font-family: 'Alexandria',
        sans-serif;
    box-sizing: border-box;

}

body {
    background-color: #f8f8fb;
    padding: 0;
    margin: 0;
}
label{
    font-size:15px;
}

section {
     position: relative;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;

 }

 section .container {
     position: relative;
     width: 70%;
     height: 93vh;
     background: #fff;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
       overflow-y: scroll;
 }

 section .container .user {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
 }

 section .container .user .imgBx {
     position: relative;
     width: 50%;
     height: 100%;

     transition: 0.5s;
 }

.tawssalee-img{
   position: absolute;
   top: 30%;
}
 section .container .user .formBx {
     position: relative;
     width: 50%;
     height: 100%;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;

     transition: 0.5s;
 }
.loginn-form{
   width: 70%;
}
 section .container .user .formBx form h2 {
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;

     text-align: center;
     width: 100%;
     margin-bottom: 10px;
     color: #555;
 }

 section .container .user .formBx form input {
     position: relative;
     width: 100%;
     padding: 10px;
     background: #f5f5f5;
     color: #333;
     border: none;
     outline: none;
     box-shadow: none;
     margin: 8px 0;
    font-size:13px;

 }

 section .container .user .formBx form input[type='submit'] {

     background: #677eff;
     color: #fff;
     cursor: pointer;

 }

 section .container .user .formBx form .signup {
     position: relative;
     margin-top: 20px;
     font-size: 12px;

     color: #555;
     text-transform: uppercase;
     font-weight: 300;
 }

 section .container .user .formBx form .signup a {
     font-weight: 600;
     text-decoration: none;
     color: #677eff;
 }

 section .container .signupBx {
     pointer-events: none;
 }

 section .container.active .signupBx {
     pointer-events: initial;
 }

 section .container .signupBx .formBx {
     left: 100%;
 }

 section .container.active .signupBx .formBx {
     left: 0;
 }

 section .container .signupBx .imgBx {
     left: -100%;
 }

 section .container.active .signupBx .imgBx {
     left: 0%;
 }

 section .container .signinBx .formBx {
     left: 0%;
 }

 section .container.active .signinBx .formBx {
     left: 100%;
 }

 section .container .signinBx .imgBx {
     left: 0%;
 }

 section .container.active .signinBx .imgBx {
     left: -100%;
 }

 @media (max-width: 991px) {
     section .container {
         max-width: 400px;

     }

     section .container .imgBx {
         display: none;
     }

     section .container .user .formBx {
         width: 100%;
     }.loginn-form{
   width: 100%;
   padding:10px;
}
 }
.input-group {
   position: relative;
}
.input {
   padding: 10px;
   width: 100%;
   /* max-width: 300px; */
   box-sizing: border-box;
   outline: none;
   border: 1px solid rgb(211, 209, 209);

}

.placeholder {
   position: absolute;
   top: 17px;
   right: 8px;
   font-size: 14px;
   padding: 0px 5px;
   color: #666;
   transition: 0.3s;
   pointer-events: none;
}

.input:focus+.placeholder {
   top: -3px;
   color: #1566a4;
   background-color: #fff;
}

.current-balance {
   width: 30%;
}
