
:root {
  --FONT_REGULAR: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --FONT_BOLD: 600;
  --COLOR_SECONDARY: #2d3642;
  --COLOR_ACCENT: #17f4ff;
  --color-green: #0b9444;
  --color-green-light: #f3fcf6;
  --bs-border-radius: 0.15rem;
  --bs-body-font-size: 0.81rem;
  --bs-primary: #e78216;
  --bs-primary-hover: #da770e;
  --bs-primary-acitve: #ce6e08;
}



/* FORM STYLES START */
.form-title {
  margin: 20px 0 20px 0;
}

.form-container {
  /* background: #ffffff;
    box-shadow: 0 0 30px -6px #443e5626;
    padding: 40px;
    border-radius: 16px; */
  padding: 0 2rem;
  max-width: 400px;
  width: 100%;
}

.signup-container .form-container {
  max-width: 640px;
  margin-top: 4em;
}

.form-control {
  font-size: 0.81rem;
  line-height: 1.45;
  padding: 0.476rem 0.75rem;
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem #e782161f;
}

.validation-message {
  color: #d53b49;
  font-size: 11px;
}

.terms-checkbox {
  width: 18px;
  height: 18px;
}

.success-info {
  background-color: var(--color-green-light);
  border-radius: var(--bs-border-radius);
  text-align: center;
  padding: 20px;
}

.success-info .title {
  color: #000;
  font-weight: 600;
}

.success-info .success-icon svg {
  fill: var(--color-green);
  width: 60px;
  height: 60px;
}

.page-title .marker {
  display: inline-block;
  position: relative;
}

.page-title .marker::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: #ffc107;
  bottom: 0px;
  left: 0;
  opacity: 0.45;
  z-index: -1;
}

/* FORM STYLES END */


/* MEDIA STYLES START */

@media only screen and (max-width: 942px) {
  .brand-area {
    display: none !important;
  }

  .form-container {
    padding: 1rem;
  }

  .signup-container .form-container {
    max-width: 100%;
    margin: 2em;
  }

  .main-wrapper {
    justify-content: center;
    align-items: center;
  }

  .mobile-logo {
    display: block;
  }

  .h6,
  h6 {
    font-size: 0.91rem;
  }

}

@media only screen and (min-width: 1367px) {
}
/* MEDIA STYLES END */
