body {
  background-image: url("https://images.unsplash.com/photo-1531719555052-632b0348c404?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover; /* Cover the entire body */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent repeating */
  min-height: 100svh;
}

.header-box {
  background-color: #65435c; /* Darker purple for the header box */
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem; /* Spacing below the header box */
}

h2 {
  color: white; /* Change header text color to white */
  margin: 0; /* Remove default margin */
  font-size: 1.5rem;
}

.oe_register_form,.oe_signup_form {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.125);
  margin-inline: auto;
  padding-inline: 4em;
  padding-bottom: 6em;
  padding-top: 2em;
  position: relative;
}
.oe_register_form:not(.oe_register){
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  z-index: 100!important;
}

label {
  color: #484848;
}

.oe_register {
  border: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: rgba(255, 255, 255, 0.75);
  color: #007bff !important;
  padding: 0;
}
.container-register {
  padding: 1em 2em;
  margin-bottom: 3em;
}

.form-group {
  margin-bottom: 1rem; /* Spacing between form groups */
}

.form-group label {
  font-weight: bold; /* Bold labels for better visibility */
  margin-bottom: 0.3rem; /* Spacing below labels */
}

.form-control {
  border: 1px solid #ced4da; /* Border color */
  border-radius: 5px; /* Rounded input fields */
  font-size: 0.85rem;
}

.btn-primary {
  background-color: #007bff; /* Custom primary button color */
  border-color: #007bff;
  transition: background-color 0.3s; /* Smooth transition */
  font-size: 0.85rem;
}

.btn-primary:hover {
  background-color: #0056b3; /* Darker on hover */
  border-color: #0056b3;
}

.icon-input {
  position: relative; /* Position for icon placement */
}

.icon-input input {
  padding-left: 2rem; /* Space for icon */
}

.icon-input .input-icon {
  position: absolute;
  left: 10px; /* Positioning icon */
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d; /* Icon color */
}

@media (min-width: 768px) {
  .oe_register_form {
    max-width: 70%;
  }
}

.doNotCloseThisWindow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background-color: #011428d5;
  color: #fff;
  font-size: 1.2em;
  z-index: 100;
  padding: 1em;
  text-align: center;
}
.loading {
  width: 30px;
  aspect-ratio: 1;
}
#paymentUnsuccess {
  color: red;
  bottom: 7px;
  background: #ffffff5d;
  text-align: center;
  font-size: 1.1em;
  padding: 0.3em;
  font-weight: 500;
}
.d-none {
  display: none;
}
.required {
  position: relative;
}
.required::after {
  position: absolute;
  content: "*";
  color: red;
  font-size: 20px;
  top: -5px;
  font-weight: 400 !important;
}
.note {
  width: 100%;
  color: #565555;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.4em;
}
.c-text-sm {
  font-size: 14px;
  color: #000000;
}

.suggestions {
  flex-direction: column;
  gap: 12px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  padding: 0.8em;
  position: absolute;
  top: 80px;
  width: 100%;
  z-index: 11100 !important;
  display: none;
}
.suggestions li {
  list-style: none;
  cursor: pointer !important;
}
li.active-list {
  background-color: var(--clr-skin) !important;
}
@media (min-width: 768px) {
  .note {
    text-align: right;
  }
}
