/* Main container */
.background-customizable {
  background-color: #ffffff; /* white background */
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  padding: 12px 20px; /* smaller padding */
  max-width: 340px;   /* tighter width */
  width: 90%;         /* responsive */
}

/* Logo */
.logo-customizable {
  max-width: 200px;
  margin-bottom: 4px;
  background-color: transparent;
  padding: 0;
}

/* Banner */
.banner-customizable {
  padding: 8px 0px 4px 0px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 8px;
}

/* Headings and labels */
.label-customizable {
  font-weight: 600;
  font-size: 16px;
  color: #405B6A; /* Brand color for headings */
}

.textDescription-customizable {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

/* Input fields */
.inputField-customizable {
  width: 100%;
  height: 44px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  border-radius: 6px;
  padding: 8px 12px;
}

.inputField-customizable:focus {
  border-color: #405B6A; /* Brand color for focus */
  box-shadow: 0 0 6px #D4F0FF;
  outline: none;
}

/* Submit button */
.submitButton-customizable {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  height: 44px;
  width: 100%;
  color: #ffffff;
  background-color: #405B6A; /* Brand color */
  border: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.submitButton-customizable:hover {
  background-color: #334854; /* Slightly darker shade */
  box-shadow: 0 0 8px #D4F0FF;
}

/* Social / IDP buttons */
.idpButton-customizable {
  height: 44px;
  color: #ffffff;
  background-color: #405B6A; /* Brand color */
  border: none;
  border-radius: 6px;
  margin-bottom: 12px;
}

.idpButton-customizable:hover {
  background-color: #334854;
}

/* Error message */
.errorMessage-customizable {
  padding: 12px;
  font-size: 14px;
  background: #ffebeb;
  color: #ce2c31;
  border-radius: 6px;
  margin-top: 12px;
}

/* Footer text */
.legalText-customizable {
  color: #6b7280;
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}
