@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
font-family: 'Poppins', sans-serif;*/


body{position:relative;overflow: hidden;}







section {
  position: relative;
  min-height: 100vh;
  background: #3392f0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.container {
  position: relative;
  width: 800px;
  height: 500px;
  background: #fff;
  box-shadow:0px 0px 10px #00000025;
  overflow: hidden;
}
.container .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition:1s ease-in-out;
}
.container .user .imgBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #ff0;
  transition: 0.5s;
  transition:1s ease-in-out;
}
.container .user .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .user .imgBx img:nth-child(3) {
    position: absolute;
    width: 60%;
    transform: translate(-50%, -50%);
    left: 38%;
    object-fit: contain;
    top: 15%;
    filter: drop-shadow(2px 4px 6px #00000060);
}

.container .user .imgBx img:nth-child(4) {
    position: absolute;
    width: 35%;
    transform: translate(-50%, -50%);
    left: 83%;
    object-fit: contain;
    top: 15%;
    filter: drop-shadow(2px 10px 1px #00000010);
}

.container .user .formBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: 1s ease-in-out;
}

.container .user .formBx form h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

.formBx form input {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  background: #e1e1e1;
  color: #333;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  transition:1s ease-in-out;
}

.formBx form select {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  background: #e1e1e1;
  color: #333;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  transition:1s ease-in-out;
}

.button {
  max-width: 100px;
  background: #3392f0 !important;
  color: #fff !important;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 1s ease-in-out !important;
  font-family: 'Poppins', sans-serif;
}

.button:hover{transition: 1s ease-in-out !important;background:#3392f0db !important;}

.container .user .formBx form .signup {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1px;
 color: #767676;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  transition:1s ease-in-out;
}

.container .user .formBx form .signup a {
  font-weight: 700;
  text-decoration: none;
  color: #767676;
  transition:1s ease-in-out;
}

.container .signupBx {
  pointer-events: none;
  transition:1s ease-in-out;
}

.active .signupBx {
  pointer-events: initial;
  transition:1s ease-in-out;
}

.container .signupBx .formBx {
  left: 100%;
}

.active .signupBx .formBx {
  left: 0;
}

.container .signupBx .imgBx {
  left: -100%;
}

.active .signupBx .imgBx {
  left: 0;
}

.container .signinBx .formBx {
  left: 0;
}

.active .signinBx .formBx {
  left: 100%;
}

.container .signinBx .imgBx {
  left: 0;
}

.active .signinBx .imgBx {
  left: -100%;
}

@media (max-width: 991px) {

  section .container {
    max-width: 400px;
    height:450px;
  }

  section .container .imgBx {
    display: none;
  }

  section .container .user .formBx {
    width: 100%;
  }

}





.square {

    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 3%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    animation: square 6s linear infinite;
    
  }
  
  @keyframes square {
    0%,100% {
      transform: translateY(-20px);
    }
    
    50% {
      transform: translateY(20px);
    }
  }
  
  .square:first-child(1) {
    width: 70px;
    height: 70px;
    top: 100px;
    right: 55px;
  }
  
  .square:nth-child(2) {
    width: 130px;
    height: 130px;
    top: 100px;
    left: 210px;
    z-index: 2;
  }
  
  .square:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 300px;
    right: 200px;
    z-index: 2;
  }
  
  .square:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: 130px;
    left: 275px;
  }
  
  .square:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 200px;
    left: 122px;
  }
  
  .square:nth-child(6) {
    width: 130px;
    height: 130px;
    bottom: 100px;
    right: 220px;
    z-index: 2;
  }
  
  

@media (max-width: 1024px){
	
	.square{display:none;}
	
	}

 .phone_view{display:none;} 

@media (max-width:600px){

.container .user .formBx{
  padding:40px 30px;
}

    .phone_view {
    display: block;
    text-align: center;
    background: #ffffff47;
    color:#fff;
    font-weight:500;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 15px 0px;
}

.phone_view h1 {

font-size:22px;
font-weight:600;
text-shadow: 2px 2px 2px #4848483d;

}

}



