#email-login-error-message,
#password-login-error-message,
#email-reset-error-message,
#custom-login-message {
  font-family: "Proxima Nova", Sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.7px;
  margin-top: 8px;
  color: red;
}

selector input#password {
  margin-top: 16px;
}

div#custom-login-message::before {
  display: none;
}
#custom-login-form-container {
  gap: 4px;
}

#custom-reset-password-message {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  font-family: "Adobe Garamond", Sans-serif;
  text-align: center;
  margin-top: 16px;
}

#toggle-password[type="checkbox"] {
  overflow: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: calc(50% + 35px);
  transform: translateY(calc(50% - 35px));
}

.eye-icon {
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  right: 10px;
  margin-top: 20px;
}

.eye-icon:before {
  content: "\f070";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#toggle-password[type="checkbox"]:checked + .eye-icon:before {
  content: "\f06e";
}

#toggle-password[type="checkbox"]:not(:checked) ~ #password {
  -webkit-text-security: disc;
  text-security: disc;
}
