@import url("https://fonts.googleapis.com/css2?family=Inria+Sans&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* For screens smaller than 600px */
@media screen and (max-width: 600px) {
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0 0 0;
  }
  .logo-img {
    width: 20%;
  }
  .right {
    display: none;
  }
  .left {
    width: 100%;
  }
  .form-box {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    overflow: hidden;
  }
  #login {
    left: 50px;
  }

  #register {
    left: 600px;
  }
}
/* For screens larger than 600px */
@media screen and (min-width: 600px) {
  .wrapper {
    height: 100vh;
    display: flex;
  }

  .right {
    display: block;
    width: 50%;
    background-image: url(../img/login-wallpaper.jpg);
    background-color: #011c3a;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .logo-img {
    width: 15%;
  }
  .left {
    padding: 50px 80px 80px 80px;
    width: 50%;
  }
  .form-box {
    width: 100%;
    height: 80%;
    position: relative;
    background: #fff;
    overflow: hidden;
  }
  #login {
    left: 120px;
  }

  #register {
    left: 600px;
  }
}

.header {
  font-size: 30px;
  font-weight: 600;
  margin: 40px 0 0 0;
  text-align: center;
}
.sub-header {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.button-box {
  width: 220px;
  margin: 35px auto;
  position: relative;
  box-shadow: 0 0 20px 9px #ff61241f;
  border-radius: 30px;
  border: 1px solid rgb(221, 221, 221);
}
.toggle-btn {
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  color: white;
  border: 0;
  outline: none;
  position: relative;
  font-weight: 600;
}
.toggle-btn2 {
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  color: rgb(0, 0, 0);
  border: 0;
  outline: none;
  position: relative;
  font-weight: 600;
}
#btn {
  position: absolute;
  width: 110px;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #960000, #960000);
  border-radius: 30px;
  transition: 0.5s;
}
.input-group {
  position: absolute;
  width: 280px;
  transition: 0.5s;
}
.input-field {
  width: 100%;
  padding: 10px 0;
  margin: 5px 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #999;
  outline: none;
  background: transparent;
}
.submit-btn {
  width: 40%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: auto;
  background-image: linear-gradient(90deg, #ff0000, #960000, #960000);
  background-position: left;
  background-size: 150%;
  transition: background-position 0.5s;
  color: white;
  border: 0;
  outline: none;
  border-radius: 30px;
}
.submit-btn:hover {
  background-position: right;
}
.check-box {
  margin: 30px 10px 30px 0;
}
span {
  color: #777;
  font-size: 12px;
  bottom: 68px;
  position: absolute;
}
