* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Varela Round", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/000.jpg");
  background-size: cover;
  animation: move 15s linear alternate infinite;
}

@keyframes move {
  50% {
    background-position: 50%;
  }
}
.bg-box {
  width: 700px;
  height: min-content;
  padding: 40px;
  text-align: center;
  /* border-radius: 16px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}
.bg-box h2 {
  font-size: 2.2rem;
  color: #fff;
}
.bg-box p {
  color: #404040;
  margin-top: 4px;
  font-size: 1.2rem;
}

.login-box {
  width: 400px;
  height: min-content;
  padding: 40px;
  background: #fff;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
  font-size: 2.2rem;
}

.login-box p {
  color: #404040;
  margin-top: 4px;
  font-size: 1.2rem;
}

form {
  text-align: left;
  margin-top: 30px;
}

form .form-group {
  margin: 18px 0;
}

form .form-group label {
  display: block;
  font-size: 20px;
  color: #101010;
}

form .form-group input {
  width: 100%;
  height: 40px;
  margin-top: 6px;
  padding: 0 12px 0 34px;
  border: 2px solid #c4c4c4;
  border-radius: 3px;
  font-size: 18px;
  color: #404040;
  transition: 0.3s;
}

form .form-group input:focus {
  border-color: #124ce7;
  box-shadow: 0 0 12px #bbd3ff;
}

form .form-group input:valid {
  border-color: #124ce7;
  background: #e4edff;
}

form .form-group i {
  position: absolute;
  color: #404040;
  font-size: 20px;
  transform: translateX(12px) translateY(16px);
}

form .forgot {
  cursor: pointer;
  color: #3784ff;
  font-size: 18px;
}

form .forgot:hover {
  color: #124ce7;
}

form input[type="submit"] {
  cursor: pointer;
  width: 100%;
  height: 46px;
  border-radius: 3px;
  font-size: 22px;
  margin-top: 28px;
  color: #fff;
  background: linear-gradient(0deg, #124ce7, #3784ff);
}
