@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,400;0,600;1,200&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito"; }

a {
  text-decoration: none !important;
  color: #e8f5bf !important; }
  a:hover {
    color: white !important; }

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100vw;
  letter-spacing: 0.08rem;
  overflow-x: hidden; }

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(90deg, #333C4A 0%, #495664 100%) !important;
  color: #F6F7D3 !important; }

.util__inline {
  display: inline-block; }

.form__container {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin: 0 auto;
  margin-top: 8rem;
  padding: 0 2rem;
  font-size: 1.6rem; }

.form__heading {
  margin: 4rem 0 2rem 0;
  text-align: center; }

.form__form {
  margin: 4rem 0; }

.form__group {
  margin-bottom: 2rem;
  position: relative; }

.form__info {
  color: #6c757d;
  margin-top: 1rem;
  transform: translateY(100%);
  transition: all 0.5s; }

.form__label {
  width: 100%;
  display: inline-block;
  margin-bottom: 1rem; }

.form__input-box {
  display: flex; }

.form__input {
  width: 100%;
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  appearance: none;
  border-radius: 0.4rem; }
  .form__input-password {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .form__input:focus {
    outline-color: #5959ff; }

.form__link {
  color: rgba(248, 252, 235, 0.7) !important;
  height: min-content;
  border-bottom: 1px solid rgba(248, 252, 235, 0.7);
  font-size: 1.4rem; }

.form__eye {
  width: 2rem;
  height: 2rem; }
  .form__eye-container {
    background-color: #e9ecef;
    border-top-right-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem; }

.form__button-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 375px) {
    .form__button-container {
      flex-direction: column-reverse;
      align-items: flex-start; }
      .form__button-container > button {
        width: 100%; }
      .form__button-container > a {
        margin-bottom: 1rem;
        border-bottom: none; } }

.form__button {
  display: grid;
  font-size: 1.4rem;
  color: #198754;
  background: transparent;
  border: 1px solid #198754;
  min-width: 10rem;
  white-space: nowrap;
  border-radius: 50px;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  place-content: center; }
  .form__button--link {
    border: none;
    display: inline-block;
    color: inherit;
    min-width: min-content;
    padding: 0;
    text-decoration: underline;
    font-size: 1.6rem; }
  .form__button:hover {
    cursor: auto !important; }

.form__errMsg {
  margin-bottom: 2rem; }

.button-active {
  border: 1px solid #198754 !important;
  color: #198754 !important;
  cursor: pointer !important; }

.button-disabled {
  border: 1px solid #6c757d !important;
  color: #6c757d !important; }

.show {
  opacity: 1; }

.error {
  max-width: 70%;
  display: block;
  margin: 0 auto;
  border: 1px solid #DC3545;
  border-radius: 8px;
  padding: 1rem 2rem;
  margin-top: 5rem;
  background-color: #DC3545; }
  .error__heading {
    font-size: 1.8rem;
    margin-bottom: 1rem; }
  .error__desc {
    margin-top: 1rem; }

.message {
  height: 100%;
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .message__heading {
    text-align: center;
    font-size: 2.6rem; }
  .message__content {
    text-align: center;
    font-size: 1.6rem; }
    .message__content a {
      text-decoration: underline !important; }
  .message__link {
    text-align: center;
    font-size: 1.6rem;
    text-decoration: underline !important; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.spinner--quarter {
  pointer-events: none;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #198754;
  animation: spin 1s ease infinite; }

.req-newP {
  height: 100%; }

/* The message box is shown when the user clicks on the password field */
#reset-password__error-message {
  background: transparent;
  position: relative;
  margin-top: 10px; }

#reset-password__error-message p {
  padding: .5rem 0 0 1rem;
  font-size: 14px; }

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: #198754; }

/* .valid:before {
    position: relative;
    left: -35px;
    content: "&#10004;";
  } */
/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: #6c757d; }

/* .invalid:before {
    position: relative;
    left: -35px;
    content: "&#10006;";
  } */
