.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.backButton {
  color: #000000de !important;
  text-transform: none !important;
  font-weight: 500 !important;
  min-width: auto !important;
  padding: 10px 30px !important;
}

.closeButton {
  color: #000000de !important;
  text-transform: none !important;
  font-weight: 500 !important;
  min-width: auto !important;
  padding: 10px 30px !important;
}

.actionButtons {
  display: flex;
  gap: 1;
}
.formContainer {
  padding: 17px 15px;
}

/* TextField styles */
.inputRoot {
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
}

.outline {
  border-color: #e9e9e9;
}

.input {
  font-size: 12px;
  font-weight: 400;
}

textarea.input {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.label {
  font-size: 12px;
  font-weight: 400;
}

.multilineTextFieldOutline {
  border-radius: 15px !important;
}

/* Checkbox and label */
.checkbox {
  padding-top: 0;
}

.termsLabel {
  font-size: 12px;
  font-weight: 400;
}

.checkboxLabel {
  align-items: flex-start;
}

/* Submit button */
.submitBtn {
  background-color: #00adb5;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: capitalize;
  width: 100%;
}

.submitBtn:hover {
  background-color: #008a91;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .header {
    overflow: auto;
  }
  .backButton {
    display: none !important;
  }

  .closeButton {
    position: fixed;
    z-index: 9999;
    right: 0px;
    top: 10px;
    background: #ffffff !important;
    position: fixed !important;
    right: 14px;
    top: 15px;
    padding: 7px 2px 7px 15px !important;
    /* box-shadow: 2px 1px 3px 0px grey; */
  }

  .actionButtons {
    display: none;
  }
}
