* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Gilroy";
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

html,
body {
  height: 100%;
  width: 100%;
}

html {
  font-size: clamp(16px, 1vw, 19px);
}

#page1 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background-color: var(--secondaryDark);
}

.form {
  padding: 3rem 0.8rem;
  width: 29vw;
  min-width: 25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.form .userOptions {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
  padding-bottom: 20px;
}
.form .userOptions p {
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 4px;
}
.form .heading {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.form .heading p {
  font-weight: 600;
  opacity: 0.6;
}
.form .heading p span {
  color: var(--accent-color);
  opacity: 1;
}
.form .heading h1 {
  margin-bottom: 1rem;
}
.form .details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.form .details .inputfield {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}
.form .details .inputfield label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-kerning: none;
  font-weight: 500;
  opacity: 0.85;
}
.form .details .inputfield input {
  background-color: var(--cod-gray-200);
  border: none;
  outline: none;
  color: black;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.308);
  font-size: 1rem;
}
.form .details .inputfield input::-moz-placeholder {
  opacity: 0.8;
}
.form .details .inputfield input::placeholder {
  opacity: 0.8;
}
.form .details .inputfield p {
  color: var(--error);
  font-size: 0.8rem;
}
.form .details .checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form .details .checkbox label {
  opacity: 0.9;
}
.form .details .submitButton {
  background-color: var(--accent-color);
  color: var(--primaryLight);
  border: none;
  height: 2.5rem;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  border: none;
  outline: none;
  border-radius: 7px;
  cursor: pointer;
}
.form .details .submitButton img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.form .forgot {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  #main #page1 .form {
    width: 86vw;
  }
  #main #page1 .form .otherOptions .options .option {
    padding: 0.7em 0.8rem;
  }
  #main #page1 .form .otherOptions .options .option p {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=forgotPassword.css.map */