@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", sans-serif;
}
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  background: #1f1f1f;
  overflow: hidden;
}
.container .left {
  position: relative;
  width: 30%;
  height: 100%;
  padding: 32px;
}
.left .desc {
  color: #fff;
  font-size: 24px;
  margin-top: 40px;
}
.left .illustration {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 110%;
  transform: rotate(-7.75deg);
}
.container .right {
  width: 70%;
  height: 100%;
  background: #fff;
  border-radius: 36px 0 0 36px;
}
.right .wrapper {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapper .heading {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}
.social-login {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.social-login a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 188px;
  height: 45px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #e6e6e6;
  color: #5a5a5a;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.wrapper .or {
  text-align: center;
  color: #a3a3a3;
  font-size: 18px;
  line-height: 35px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.form .input-group {
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
  display: flex;
  padding: 0 10px;
}
.form .input-group label {
  position: absolute;
  top: 0;
  left: 0;
  color: #9d9d9d;
  font-size: 16px;
  line-height: 35px;
  pointer-events: none;
  transition: .15s ease-out;
}
.form .input-group input {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
}
.form .input-group input:focus ~ label,
.form .input-group input.filled ~ label {
  top: -20px;
  left: 0;
  color: #5a5a5a;
  font-size: 12px;
  font-weight: 600;
}
.form .input-group img {
  cursor: pointer;
}
.form .btn {
  width: 100%;
  border: none;
  outline: none;
  background: #e3ffa8;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.bottom-text {
  margin-top: 20px;
  color: #9d9d9d;
  font-size: 16px;
  line-height: 35px;
}
.bottom-text a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .container .left {
    width: 100%;
    height: 40%;
    padding: 20px 40px;
  }
  .left .desc {
    font-size: 18px;
  }
  .left .illustration {
    width: 50%;
    top: 50%;
    left: 30%;
    min-width: 300px;
    position: relative;
    position: absolute;
  }
  .container .right {
    width: 100%;
    height: 60%;
    border-radius: 36px 36px 0 0;
  }
  .right .wrapper {
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  .wrapper .heading {
    font-size: 20px;
  }
  .social-login {
    gap: 10px;
  }
  .social-login div {
    width: 100%;
    justify-content: center;
  }
  .form .input-group {
    margin-bottom: 10px;
  }
  .form .input-group input {
    height: 40px;
  }
  .heading-up{
    display: none;
  }
  .bottom-text {
    font-size: 14px;
  }
}


.button_slide {
    color: black;
    background-color: #e3ffa8;
    border: none;
    padding: 18px 36px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #d0e4a7;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.25s;
  }
  
  .slide_right:hover {
    box-shadow: inset 1000px 0 0 0 #d0e4a7;
  }
