.auth-section{
  padding:90px 0;
  background:linear-gradient(135deg,#eef2ff,#ffffff);
}

.auth-wrapper{
  position:relative;
  display:flex;
  height:600px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.1);
}

/* LEFT PANEL */
.auth-left{
  width:50%;
  background:linear-gradient(135deg,#4f46e5,#06b6d4);
  color:#fff;
  padding:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.auth-left h2{
  font-size:42px;
  font-weight:800;
}

.auth-left p{
  margin-top:20px;
  opacity:.9;
  line-height:1.7;
}

/* RIGHT PANEL */
.auth-right{
  width:50%;
  background:#fff;
  position:relative;
  overflow:hidden;
}

/* FORMS */
.form{
  position:absolute;
  width:100%;
  height:100%;
  padding:60px;
  transition:.6s;
}

.signup-form{
  left:100%;
}

.auth-wrapper.active .signup-form{
  left:0;
}

.auth-wrapper.active .login-form{
  left:-100%;
}

/* INPUT */
.input-box{
  position:relative;
  margin-bottom:25px;
}

.input-box input{
  width:100%;
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  outline:none;
}

.input-box label{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  font-size:13px;
  color:#94a3b8;
  background:#fff;
  padding:0 6px;
  transition:.3s;
}

.input-box input:focus + label,
.input-box input:valid + label{
  top:-8px;
  font-size:11px;
  color:#4f46e5;
}

/* BUTTON */
.form button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:12px;
  background:linear-gradient(90deg,#4f46e5,#06b6d4);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  margin-top:10px;
}

/* SWITCH TEXT */
.switch{
  text-align:center;
  margin-top:20px;
}

.switch span{
  color:#4f46e5;
  font-weight:700;
  cursor:pointer;
}