/* stylelint-disable */

/* Logo banner */
.banner-customizable {
  padding: 0;
  background-color: #FFFFFF;
}

.logo-customizable {
  width: 70%;
  max-width: 100%;
  max-height: 100%;
}

/* Social logins */
.idpDescription-customizable {
  display: block;
  width: 90%;
  margin: 0 20px 10px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 18px;
}

.socialButton-customizable {
  display: block;
  width: 90%;
  height: 48px;
  margin-bottom: 0;
  margin: 0 20px;
  border-radius: 10px;
  padding: 6px 12px;
}

.legalText-customizable {
  display: none !important;
  width: 85%;
  margin: 0 20px;
  color: #747474;
  font-size: 11px;
}


/* Standard login form */
.textDescription-customizable {
  width: 90%;
  margin: 0 20px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.label-customizable {
  width: 90%;
  margin: 0 20px 8px;
  font-weight: 400;
  line-height: 18px;
}

.inputField-customizable {
  width: 90%;
  height: 48px;
  margin: 0 20px 10px;
  color: #555555;
  background-color: #FFFFFF;
  border: 1px solid #3BBFAD;
  border-radius: 10px;
  transition: box-shadow ease .2s;
}

.inputField-customizable:focus {
  border-color: rgb(59, 191, 173);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(59, 191, 173,.6);
}

.submitButton-customizable {
  display: block;
  width: 90%;
  height: 48px;
  margin: 10px 20px 0;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  color: #FFFFFF;
  background-color: #035C67;
  border-color: #035C67;
  border-radius: 10px;
  transition: background-color ease .2s;
}

.submitButton-customizable:hover {
  color: #FFFFFF;
  background-color: #01444D !important;
  border-color: #01444D !important;
  outline: 0 !important;
}

.redirect-customizable {
  width: 90%;
  margin: 0 20px 10px;
  color: #747474;
  font-size: 13px;
}


/* Error message */
.errorMessage-customizable {
  width: 100%;
  margin-bottom: 20px; 
  padding: 1rem 1.5rem;
  font-size: 14px;
  background: rgba(228, 95, 81, 0.1);
  color: #D31400;
  border: none;
  border-radius: 10px;
}


/* Password validation */
.passwordCheck-notValid-customizable {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  color: #8E9295;
  width: 90%;
  margin: 0 18px 4px;
  clip-path: inset(0 0 0 9px);
}

.passwordCheck-valid-customizable {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  color: #048D78;
  width: 90%;
  margin: 0 18px 4px;
  clip-path: inset(0 0 0 9px);
}
