.formContainer {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

.hugRoomMainContainer {
  display: flex;
}

/* Button Styles */
.button {
  height: auto;
  width: auto;
  background-color: #fafaff;
  color: var(--content-primary, #1937ff);
  border-radius: 3px;
  font-family: 'Sora';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  align-self: center;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
  margin-top: 32px;
  text-transform: uppercase;
}

.button:disabled {
  opacity: 0.3;
  background: var(--background-brand-primary, #fafaff);
  color: var(--content-primary, #1937ff);
}

.select:focus-visible {
  outline: 1px solid #2465ff;
}

.textarea:focus-visible {
  outline: unset;
}

.select {
  color: #9b9fae;
  margin-bottom: 32px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
  background: #0e1524;
  border-radius: 4px;
  border: 1px solid var(--border-secondary, #d8dbe3);
  appearance: none;
  /* Hide the default select arrow */
  padding-right: 30px;
  /* Add space for the chevron icon */
}

.input {
  width: calc(100%);
  font-size: 16px;
  background: #121026;
  border-radius: 4px;
  resize: none;
  border: none;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 125% */
  color: #fafbff;
  box-sizing: border-box;
  outline: none;
}

.textarea {
  width: calc(100%);
  font-size: 16px;
  background: #121026;
  border-radius: 4px;
  resize: none;
  border: none;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 125% */
  color: #fafbff;
  box-sizing: border-box;
}

.logo {
  width: 200px;
  height: auto;
  align-self: center;
}

.form {
  display: flex;
  flex-direction: column;
}

.customSelect {
  position: relative;
  display: inline-block;
  width: 100%;
}

.selectIcon {
  position: absolute;
  top: 30%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  /* Ensure the icon does not interfere with select functionality */
}

.title {
  color: var(--content-primary, #fafaff);
  text-align: center;

  /* headline/tablet & mobile/headline-4 */
  font-family: 'Sora';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 133.333% */
  letter-spacing: 0.36px;
  margin: 24px 0px 16px 0px;
  align-self: center;
}

.description {
  color: var(--content-primary, #fafaff);
  text-align: center;

  /* text/text-default-3 */
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  margin-top: 0px;
  margin-bottom: 32px;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--content-primary, #fafaff);
  /* headline/tablet & mobile/headline-5 */
  font-family: 'Sora';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 137.5% */
  letter-spacing: 0.32px;
  /* 125% */
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .formContainer {
    max-width: 100%;
    border: none;
    z-index: 1;
  }
}

/* Center the spinner container */
.spinnerContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  /* Semi-transparent background to dim the page */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  /* Ensure it appears above other elements */
}

.overlay {
  background-color: #0e1524;
  opacity: 0.9;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.overlayV2 {
  background-color: #03001e;
  opacity: 0.7;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Style the spinner */
.spinner {
  border: 4px solid #2465ff;
  /* Light gray border */
  border-top: 4px solid #f3f3f3;
  /* Blue border on top for animation */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  /* Spin animation */
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
