/* reset */
.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .icon {
  position: absolute;
  display: inline-block;
  line-height: 50px;
  top: 0;
  cursor: pointer;
}
.password-input-wrapper .material-icons {
  line-height: 50px;
}

.password-input-wrapper .icon:hover {
  color: #92bdff; 
}

.password-input-wrapper .icon {
  font-size: 16px;
  color: #333;
}

.icon.toggle-eye {
  right: 10px;
}

.icon.lear-cross {
  right: 40px;
}

.validation-feedback li::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 10px;
}

.validation-feedback li.success::after {
  content: "\f00c";
  color: green;
}

.validation-feedback li.fail::after {
  content: "\f00d";
  color: red;
}

.validation-feedback ul {
  margin-left: 20px;
}

#password-matching-message {
  margin-left: 20px;
}

#password-matching-message,
.validation-feedback ul li {
  color: gray;
  font-size: 14px;
}

#password-matching-message::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 20px;
}

#password-matching-message.success::after {
  content: "\f00c";
  color: green;
}

#password-matching-message.fail::after {
  content: "\f00d";
  color: red;
}


.password-input-wrapper input {
  padding: 0 0 0 14px;
  line-height: 50px;
  margin: 0;
}
.password-wrapper label {
  line-height: 20px;
  margin-bottom: 10px;
}

.password-wrapper .hidden {
  display: none;
}

/* loginModal */
#loginModal .modal-content {
  max-height: 80vh;
}

#loginModal .modal-body {
  position: relative;
  overflow-y: auto;
}


#loginModal form {
  margin-bottom: 15px;
}

#loginModal h2 {
  text-align: center;
  font-size: 32px;
}

#loginModal p a {
  display: inline;
}

#loginModal label {
  margin: 10px;
  font-size: 1rem;
  line-height: 1.2rem;
}

#loginModal .btn.contact__btn {
  width: 100%;
  margin-top: 36px;
}
#loginModal p {
  font-size: 18px;
  text-align: center;
  margin-top: 0.5rem;
}



#loginModal .auth-slider {
  display: flex;
  width: 100%;
  /*height: 100%; */
  /* transition: transform 0.5s ease; 
  flex-direction: column;
  */
  transition: transform 0.3s ease-in-out;
}

#loginModal .auth-screen {
  width: 100%;
  padding: 20px;
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, height 0.5s ease;
}

#loginModal .auth-screen.active {
  display: block;
  opacity: 1;
  height: auto;
}

#loginModal .text-danger,
#loginModal .error-message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

#loginModal .text-success {
  color: green;
}

#loginModal button {
  background-color: #92bdff;
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem 2.5rem;
  border-radius: 6.25rem;
}

#loginModal button:hover {
  background-color: #005bb5;
}

#loginModal a {
  color: #0073e6;
  text-decoration: none;
}

#loginModal a:hover {
  text-decoration: underline;
}

#loginModal .btn-close {
  border: none;
  font-size: 12px;
  border-radius: 16px;
  padding: 10px;
  float: right;
  width: 28px;
  height: 28px;
}

#loginModal .close:hover,
#loginModal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.contact {
  margin: 1.625rem 0 1.25rem !important;
}

#loginModal .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
#loginModal .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: none;
  border-radius: 0;
}

.contact__btn.disabled,
.resetPassBtn:disabled {
  background-color: #c4c4c4;
  color: #f6f8fc !important;
  cursor: not-allowed !important;
}


label.check-agree {
    line-height: 1.3em;
    font-size: 12px;
}
label.check-agree input {
    width: 13px;height: 13px;margin-right: 15px;margin-top: 5px;display: inline;
}
label.check-agree p, 
label.check-agree p a {
    display: inline;
}
.require-label {
  color: grey;
  font-style: italic;
  font-size: 10px;
}

@media (max-width: 768px) {
  #loginModal .modal-dialog {
    margin: 10px;
  }
}

@media (min-width: 1200px) {
  #loginModal .modal-dialog {
    max-width: 450px;
  }
}
