@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 10;
  padding: 10;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html,body{
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;

}
::selection{
  background: #89a7e7;
  color:#3a4141;
}

.wrapper{
 
  overflow: hidden;
  max-width:900px;
  min-width: 670px;
  height: 138vh;
  background: #81a7b49e;
  padding: 70px;
  border-radius: 5px;
  box-shadow: 0px 15px 20px rgba(97, 85, 85, 0.1);
  border: 2px solid rgb(177, 176, 176);
  scroll-padding: 65px;
}
.wrapper .title-text{
  display: flex;
  width: 200%;
}
.wrapper .title{
  width: 50%;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 27px 0 9px 0;
  justify-content: space-between;
  border: 2px solid rgb(156, 179, 180);
  border-radius: 5px;
}
.wrapper .lll{
  display: flex;
  
  flex-direction: column;
  align-items: center;
}
.wrapper .lll svg{
  height: 60px;
  width: 70px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color:  #ffffff9e;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor:-moz-zoom-in;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #c6c0c0;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 5px;
  background: -webkit-linear-gradient(left,#054c5e, #30c3cd);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #ffffff9e;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #353333;
}
#login:checked ~ label.signup{
  color: #3c3b3b;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.form-inner form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 18px ;
  box-shadow: #6e6b6b;
  border-radius: 7px;
  border: 1px solid rgb(128, 128, 128);
  border-bottom-width: 3px;
  font-size: 17px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: #0a4350;
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #b3b3b3;
}
.form-inner form .pass-link{
  margin-top: 5px;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #375d67;
  text-decoration: none;
}
.form-inner form .pass-link a:hover{
  background-color: #33f1fb;
}
.form-inner form .signup-link a:hover{
   background-color: #6c6c6c;
}
form .btn{
  height: 50px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #30c3cd,#054c5e, #30c3cd, #054c5e);
  border-radius: 5px;
  transition: all 0.4s ease;;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #d1cdcd;
  padding-left: 34;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}