@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lato:wght@300;400;700;900&family=Montserrat:wght@400;500;600;700&family=Rubik:wght@300;400;500;600&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.area {
  background: #a3b18a;
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 100%;
  height: 100vh;
}
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.login-form {
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  height: 450px;
  width: 450px;
  background-color: #eeeeee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
form {
  margin-top: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  align-items: center;
}
.logo {
  font-family: "montserrat";
  font-size: 10px;
  display: flex;
  margin: 30px 35px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.logo img {
  margin-right: 10px;
  width: 120px;
}
.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d704f;
}
.container {
  position: relative;
  display: flex;
}
.info {
  margin-bottom: 30px;
  font-family: "rubik";
}
.info p {
  font-size: 13px;
}
.info h1 {
  font-size: 30px;
}
.input-box {
  margin-top: 20px;
  position: relative;
  width: 310px;
  height: 40px;
}
.input-box input {
  height: 100%;
  width: 100%;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  outline: none;
  background: transparent;
  border: 1px solid #3a3a3a;
  font-family: "montserrat";
}
span {
  font-family: "montserrat";
  position: absolute;
  left: 0;
  padding: 10px 18px;
  font-size: 14px;
  transition: 0.5s;
  pointer-events: none;
  color: rgb(58, 58, 58, 0.7);
}
.input-box input:focus ~ span,
.input-box input:not(:placeholder-shown) ~ span {
  color: green;
  text-transform: uppercase;
  font-size: 10px;
  transform: translateX(11px) translateY(-7px);
  padding: 0 5px;
  background: #eeeeee;
  border-right: 1px solid #3a3a3a;
  border-left: 1px solid #3a3a3a;
}

.login {
  margin-top: 30px;
  width: 150px;
  height: 45px;
  font-family: "rubik";
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #3a3a3a;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.login:hover {
  background-color: #2ee59d;
  box-shadow: 0px 15px 20px rgb(163, 177, 138);
  color: #fff;
  transform: translateY(-7px);
}
.remember {
  font-family: "lato";
  font-size: 12px;
  align-items: center;
  margin-left: -65%;
  margin-top: 10px;
}
.show-hide:hover {
  color: #2ee59d;
}
.show-hide {
  cursor: pointer;
  position: absolute;
  top: 13px;
  left: 275px;
  transition: all 0.3s ease;
  z-index: 100;
  color: #4b4b4b;
}
i {
  background: #eeeeee;
}
.show {
  position: absolute;
  transform: scale(0);
}
.show-hide.showPass .show {
  transform: scale(1);
}
.show-hide.showPass .hide {
  transform: scale(0);
}
.error {
  display: block;
  color: red;
  font-size: 10px;
  margin-top: 2px;
  font-family: "Montserrat", sans-serif;
}
