body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
  opacity: 0;
  text-align: center;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    to top right,
    var(--dark),
    var(--concretFull),
    var(--greensetFull),
    var(--clayCourtFull),
    var(--dark)
  );
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
main h1 {
  margin-top: 62px;
  font-size: clamp(4rem, 6vw, 6rem);
  padding: 0 15px;
  font-family: var(--title);
  color: var(--white);
  letter-spacing: 2px;
  text-align: center;
  user-select: none;
}

.reset_form_container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.msg_container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.msg {
  display: flex;
  flex-direction: column;
  background: #5e5e5e41;
  width: clamp(60%, 50vw, 80%);
  height: clamp(60%, 50vw, 80%);
  gap: 50px;
  padding: 5% 3% 0 3%;
  box-shadow: 1px 1px 7px #000;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding: 7% 3% 0 3%;
}

form input {
  padding: 15px 20px;
  max-width: 350px;
  outline: none;
  border-radius: 2px;
  border: none;
  font-family: var(--text);
  font-size: 2rem;
  color: var(--dark);
  box-shadow: 0 0 15px #000;
  transition: 0.2s ease-in-out;
  width: 100%;
}
form input:hover {
  transform: scale3d(1.05, 1.05, 1);
}

small {
  font-family: var(--text);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--white);
}

.form_button_reste {
  position: relative;
  display: block;
  width: 350px;
  align-self: center;
  padding: 15px 20px;
  cursor: pointer;
  background: var(--green);
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 15px #000;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}

.form_button_reste:active {
  top: 2px;
}

.form_button_reste span {
  color: var(--white);
  font-family: var(--text);
  font-size: 3rem;
  z-index: 1000;
  transition: 0.2s;
}
.form_button_reste:hover span {
  position: relative;
  color: var(--green);
}

.form_button_reste::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: 0.25s ease-in-out;
}

.form_button_reste:hover::after {
  width: 100%;
  background: var(--white);
}

p {
  font-family: var(--text);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--white);
}
.retry {
  font-family: var(--text);
  /* color: var(--white); */
  padding: 5px 10px;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.retry:hover {
  background: var(--clay);
  color: var(--white);
}
