@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0 1.6rem;
}

section {
  flex: 1;
}

#login-wrapper {
  max-width: 720px;
  width: 100%;
  box-shadow: 0px 0px 30px 0px rgba(82, 100, 108, 0.2);
  padding: 24px;
  border-radius: 5px;
  margin-top: 15vh;
}
#login-wrapper * {
  font-family: "Roboto", sans-serif !important;
}
#login-wrapper .image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0px 16px 0px;
}
#login-wrapper .image-wrapper img {
  max-width: 300px;
  width: 100%;
  height: 66.86px;
}
#login-wrapper .login-form {
  width: 100%;
  padding-bottom: 10px;
}
#login-wrapper .login-form h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  color: #52646c;
  margin-top: 0;
}
#login-wrapper .login-form p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: #52646c;
}
#login-wrapper .login-form .reset-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}
#login-wrapper .login-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#login-wrapper .login-form label {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  color: #52646c;
}
#login-wrapper .login-form .signInButtonDiv button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  transition: all 400ms ease-in-out;
  background-color: #349eb0;
  color: #FFF;
  border-color: #349eb0;
  height: 53px;
  padding: 16px 28px 16px 28px;
  transition: all 400ms ease-in-out;
}
#login-wrapper .login-form .signInButtonDiv button:hover {
  background: #278CA0;
  border: 1.5px solid #278CA0;
}
#login-wrapper .login-form .signInButtonDiv button:focus-visible {
  background: #349EB0;
  border: 1.5px solid #157087;
  box-shadow: 0px 0px 6px 0px rgba(86, 185, 202, 0.5019607843);
}
#login-wrapper .login-form .signInButtonDiv button:active {
  border: 1.5px solid #157087;
  outline: none !important;
}
#login-wrapper .login-form .signInButtonDiv button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: unset;
}
#login-wrapper .login-form .signInButtonDiv button:disabled span,
#login-wrapper .login-form .signInButtonDiv button:disabled img {
  cursor: unset;
}
#login-wrapper .login-form .form-group.text-right {
  text-align: left;
}
#login-wrapper .login-form .form-group.text-right a {
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 21px;
  color: #349eb0 !important;
  text-decoration: underline !important;
}
#login-wrapper .login-form .error-msg ul li {
  list-style: none !important;
  text-align: center !important;
  font-size: 14px;
  color: #E66D91;
  font-weight: 500 !important;
}
#login-wrapper .form-group {
  margin-bottom: 0;
}
#login-wrapper .form-group input {
  border: 1px solid #DADDDF !important;
  font-weight: 400;
  color: #52646c;
  padding: 8px 12px;
  height: 48px;
  box-shadow: none;
  border-radius: 5px;
  width: 100%;
  outline: none;
}
#login-wrapper .form-group input:focus {
  box-shadow: none;
  border: none;
  border: 1px solid #349eb0 !important;
}
