html,
body {
  /* font-size: 2rem; */
  /* background-image: url("../facetology-backdrop.png");
  background-size: auto; */
  /* background-position: center; Centers the image */
  /* background-repeat: no-repeat; Prevents the image from repeating */
  /* font-family: Arial, sans-serif; */
  /* backdrop-filter: blur(2px); */
  /* backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; */
  height: 100%;
  margin: auto 0;
  padding: 0;
  background-color: black;
  box-sizing: border-box;
  background: rgb(207, 154, 255);
  background: linear-gradient(
    112deg,
    rgba(207,154,255,0.9626444327731093) 15%,
    rgba(236, 233, 253, 1) 55%
  );
  background-repeat: no-repeat; /* Prevents the gradient from repeating */
  background-attachment: fixed; /* Ensures the gradient covers the entire viewport */
  background-size: cover; /* Ensures the gradient fills the viewport */
}

.required {
  color: red;
}

.optional {
  color: #b79edb;
}

.section-header-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}

.head-container {
  margin-top: 1rem;
}

.section-content-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-size: 12px;
}

.form-container {
  border-radius: 2rem;
  background-color: white;
}

.section-content-text-highlight {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

.bold-highlight {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}

.voucher-code-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}

a.btn {
  background-color: #b79edb !important; /* Override background */
  border: none;
  color: white;
  border-radius: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: small;
}

label {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: small;
}

.form-group > input,
.form-group > select {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  border-radius: 0.8rem;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
}

.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

/* Reset autofill background color */
input:focus,
select:focus {
  box-shadow: 0 0 0px 1000px white inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
  border-color: #b79edb !important;
  border-width: 2px; /* Set the desired border width */
  border-style: solid; /* Ensure the border is visible */
}

/* Optional: For other browsers */
/* input:active,
select:active {
  box-shadow: 0 0 0px 1000px white inset !important;
  border-color: #a77bca !important;
  border-width: 5px; 
  border-style: solid; 
} */

/* Reset autofill background color */
input:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Optional: For other browsers */
input:-moz-autofill,
select:-moz-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
}


.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050; /* Ensure it appears above all content */
}

/* .promo-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  margin: 20px;
}
h1 {
  color: #5e35b1;
}
p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}
button {
  padding: 10px 20px;
  background-color: #7e57c2;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #5e35b1;
} */
