body {
  font-family: 'Exo 2', Arial, sans-serif;
  padding: 20px;
}

button.reset-pass {
  border-radius: 6px;
  font-size: 16px;
}

div.reset-pass {
  width: 668px;
  background-color: white;
  border-radius: 6px;
  padding: 32px 64px;
}

img.reset-pass {
  height: 64px;
}

form.reset-pass {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* #password-requirements {
  list-style: none;
  padding-left: 20px;
} */

.password-requirements {
  list-style: none;
  padding-left: 20px;
}

.requirement {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.requirement::before {
  content: "•";
  margin-right: 10px;
  color: #ccc;
}

.requirement.valid::before {
  content: "✔";
  color: green;
}

.requirement.valid {
  color: green;
}

#submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transition: all 0.2s ease-in-out;
}

#submit-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#submit-btn:hover {
  color: #8ABE53;
}



.show-pass-new {
  border: none;
  height: 24px;
  width: 24px;
  padding: 0px;
  margin: 0px;
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: transparent;
}

.show-pass-confirm {
  border: none;
  height: 24px;
  width: 24px;
  padding: 0px;
  margin: 0px;
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: transparent;
}


.errors-reset {
  min-height: 28px;
  color: red;
  font-size: 14px;
}

input.reset-pass {
  font-size: 24px;
}




/* From auth.css */

.auth-in {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 40px;
  border: 2px solid black;
  border-radius: 20px;
  padding-left: 24px;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.auth-in:hover {
  background-color: rgb(245, 245, 245);
}

.auth-in:focus {
  border: 2px solid #096a2e;
  background-color: rgb(245, 245, 245);
}

.auth-in:focus + .labels-in,
.auth-in:not(:placeholder-shown) + .labels-in {
  top: -24px;
  color: black;
  font-weight: 600;
}




.labels-in {
  position: absolute;
  top: 8px;
  left: 24px;
  color: #7a7a7a;
  font-size: 18px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}





/* FROM BOTH SIGNUP and RESET-PASS*/

.password-requirements {
  list-style: none;
  padding-left: 20px;
}

/* Responsive styles for reset password */
@media (max-width: 768px) {
  div.reset-pass {
    width: 90%;
    max-width: 500px;
    padding: 24px 32px;
  }

  img.reset-pass {
    height: 56px;
  }

  .requirement {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  div.reset-pass {
    width: 95%;
    padding: 20px 24px;
  }

  img.reset-pass {
    height: 48px;
  }

  button.reset-pass {
    font-size: 15px;
  }

  .requirement {
    font-size: 12px;
  }

  #submit-btn {
    padding: 8px 16px;
    font-size: 15px;
  }
}
