main.login .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.125em 0.1875em;
}
main.login .logo img {
  max-height: 36px;
}
main.login .disclaimer {
  margin: 0;
  margin-top: 46px;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #2f4f4f;
}
main.login .disclaimer a {
  font-size: inherit;
}
main.login #form-container {
  max-width: 450px;
  margin: auto;
  padding: 20px;
  font-size: 1em;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1440px) and (orientation: portrait) {
  main.login #form-container {
    min-width: 20em;
    max-width: 27em;
    padding: 0px 1em;
  }
}
main.login #header-text {
  font-size: 26px;
  margin-bottom: 7px;
  text-align: center;
}
main.login #verify-text {
  color: #2f4f4f;
  margin-bottom: 0;
  text-align: center;
}
main.login #text-resend {
  text-align: center;
}
main.login #button-edit {
  position: absolute;
  padding: 10px 15px;
  height: 44px;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  right: 0;
  top: 16px;
  font-weight: 600;
  color: gray;
  cursor: pointer;
  display: none;
}
main.login #email-field:disabled {
  background-color: #fff;
  color: gray;
}
main.login input[type="password"],
main.login input[type="text"],
main.login input[type="email"] {
  width: 100%;
  height: 2.75rem;
  font-size: 1rem;
  color: #000;
  padding: 0px 0.75rem;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 16px;
  border: 1px solid #888;
}
main.login .btn {
  height: 44px;
  width: 100%;
  padding: 10px;
  margin-top: 16px;
  background-color: #121212;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
main.login .btn2 {
  height: 44px;
  width: 100%;
  padding: 10px;
  margin-top: 16px;
  background-color: var(--bs-secondary);
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
main.login .btn2:disabled {
  cursor: default;
}
main.login .btn2.sending {
  background-color: #ccc;
  opacity: 0.7;
  cursor: not-allowed;
}
main.login .btn2.sent {
  background-color: #fff;
  color: #4caf50;
  border: 1px solid #4caf50;
  cursor: default;
}
main.login .spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #fff;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main.login .btn2:hover {
  box-shadow: 1px 0px 2px 0px rgba(26, 26, 26, 0.472);
  transition: all 0.5s;
}
main.login .btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
main.login #password-strength-message {
  font-size: 12px;
  margin-top: 10px;
}
main.login .Separator {
  font-size: 14px;
  margin: 12px 0px 0px;
  line-height: 21px;
  font-weight: 500;
  color: #000;
  position: relative;
  text-align: center;
}
main.login .Separator span {
  display: inline-block;
  height: 14px;
}
main.login .Separator::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  width: calc(50% - 1em);
  height: 0px;
  border-bottom: 1px solid #e2e2e2;
  left: 0;
  margin-right: 0.5em;
}
main.login .Separator::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  width: calc(50% - 1em);
  height: 0px;
  border-bottom: 1px solid #e2e2e2;
  right: 0;
  margin-left: 0.5em;
}
main.login .sso-button {
  display: block;
  margin-top: 8px;
  height: 44px;
  line-height: 24px;
  position: relative;
  padding: 1px;
  width: 100%;
  border-radius: 3px;
  text-align: center;
  overflow: inherit;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
  background-color: #fff;
  border: 1px solid #000;
}
main.login .sso-button:hover {
  background-color: #f7f7f7;
}
main.login .button-icon {
  vertical-align: middle;
  margin-top: -3px;
  height: 17px;
}
main.login .button-text {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  left: calc(50% - 4.625em + 13px);
  top: calc(50% - 0.5em + 1px);
  margin-left: 8px;
}
