@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #a3c2d7;
  position: relative;
  color: #fff;
}
body main {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
}
body main form {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.1882352941);
  padding: 2rem 1.5rem;
}
body main form h1 {
  text-align: center;
  font-size: 8rem;
  margin: 2rem 0;
  font-weight: 900;
}
body main form .textGroup {
  position: relative;
  font-size: 18px;
  margin-bottom: 0.5rem;
  z-index: 0;
}
body main form .textGroup input {
  width: 100%;
  line-height: 1.5rem;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  padding: 0.5rem 0;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #226479;
}
body main form .textGroup input:focus {
  outline: none;
  border-bottom: 1px solid lightBlue;
}
body main form .textGroup input:focus + label span {
  color: lightBlue;
  top: -2rem;
  font-size: 12px;
}
body main form .textGroup input:valid + label span {
  color: lightBlue;
  top: -2rem;
  font-size: 12px;
}
body main form .textGroup label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
body main form .textGroup label span {
  position: relative;
  top: 0;
  transition: 0.5s cubic-bezier(0.85, -0.1, 0.23, 1.38);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
body main form button {
  border: 1px solid #226479;
  background-color: #226479;
  padding: 0.65rem;
  font-size: 16px;
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
body main form button:active {
  transform: scale(0.98);
}
body main form button:hover {
  transform: scale(0.98);
}
body main form a {
  text-align: center;
  margin-top: 0.5rem;
  text-decoration: none;
  font-size: 14px;
  color: lightBlue;
}/*# sourceMappingURL=fontAnimation.css.map */