@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.login-page {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  background-color: #f2f2f2;
}
.wave {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 7rem;
  padding: 0 2rem;
}
.img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.login-box-msg,
.register-box-msg {
  margin: 0;
  padding: 0 20px 20px;
  text-align: center;
  font-size: 12px;
}
.login-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* text-align: center; */
}
.img img {
  width: 500px;
}
form {
  width: 360px;
}
.login-content img {
  height: 100px;
  object-fit: scale-down;
}
.title {
  margin: 15px 0;
  color: #333;
  text-transform: uppercase;
  font-size: 2.9rem;
}
.login-content .input-div {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid #d9d9d9;
}
.login-content .input-div.one {
  margin-top: 0;
}
.i {
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.i i {
  transition: 0.3s;
}

a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
  transition: 0.3s;
}

label {
  text-align: left;
  color: #999;
  font-size: small;
}
h4 {
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #007bff;
  /* border-radius: 4px; */
  /* box-sizing: border-box; */
}

/* div {
    border-radius: 5px;
   
    padding: 20px;
  } */

a:hover {
  color: #6b5cff;
}
.btn {
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #007bff, #007bff, #007bff);
  background-size: 200%;
  font-size: 1.2rem;
  color: #fff;
  /* text-transform: uppercase; */
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}
.btn:hover {
  background-position: right;
}

@media screen and (max-width: 1050px) {
  .container {
    grid-gap: 5rem;
  }
}
@media screen and (max-width: 1000px) {
  form {
    width: 290px;
  }
  .title {
    margin: 8px 0;
    font-size: 2.4rem;
  }
  .img img {
    width: 400px;
  }
}

@media screen and (max-width: 900px) {
  body {
    background-color: #6b5cff;
  }
  .container {
    grid-template-columns: 1fr;
  }
  .img {
    display: none;
  }
  .wave {
    display: none;
  }
  .login-content {
    justify-content: center;
    color: black;
  }
  .form-login {
    padding: 40px;
    background-color: #fff;
    width: 420px;
    border-radius: 8px;
    box-shadow: 3px 3px 15px rgba(88, 34, 160, 0.2);
  }
}
