body {
  margin-left: 0px;
  margin-right: 0px;
  background: var(--Netraul-Colors-150, #eef0f2) !important;
}
.di--main {
  width: calc(100% - 120px);
  display: flex;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
  margin-left: 60px;
  margin-right: 60px;
  margin-top: 0;
  margin-bottom: 0;
  justify-content: center;
}
.di--d-flex {
  display: flex;
}
.di--flex-column {
  flex-direction: column;
}
.di--flex-row {
  flex-direction: row;
}
.di--flex-wrap {
  flex-wrap: wrap;
}
.di--justify-content-center {
  justify-content: center;
}
.di--justify-content-between {
  justify-content: space-between;
}
.di--justify-content-start {
  justify-content: flex-start;
}
.di--align-items-center {
  align-items: center;
}
.di--align-items-start {
  align-items: flex-start;
}
.di--align-items-end {
  align-items: flex-end;
}
.di--align-self-center {
  align-self: center;
}
.di--align-self-start {
  align-self: flex-start;
}
.di--align-self-end {
  align-self: flex-end;
}
.di--padding-20 {
  padding: 20px;
}
.di--gap-10 {
  gap: 10px;
}
.di--gap-16 {
  gap: 16px;
}
.di--gap-20 {
  gap: 20px;
}
.di--gap-32 {
  gap: 32px;
}
.di--img-w-50 {
  width: 50%;
}
.di--w-47 {
  width: 47%;
}
.di--mb-24 {
  margin-bottom: 24px;
}
.di--mb-30 {
  margin-bottom: 30px;
}
.di--mb-32 {
  margin-bottom: 32px;
}
.di--mb-40 {
  margin-bottom: 40px;
}
.di--mb-16 {
  margin-bottom: 16px;
}
.di--mb-30 {
  margin-bottom: 30px;
}
.di--mb-45 {
  margin-bottom: 45px;
}
.di--mb-100 {
  margin-bottom: 100px;
}
.di-align-start {
  align-items: start !important;
}
.di--w-42 {
  width: 42%;
}
.di--w-70 {
  width: 70%;
}
.di--w-80 {
  width: 80%;
}
.di--w-100 {
  width: 100%;
}
.di-w-100p {
  width: 100px;
}
.di--gap-5 {
  gap: 5px;
}
.di--gap-8 {
  gap: 8px;
}
.di--input-lg {
  height: 40px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  color: #000;
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  width: 100%;
  padding: 8px 12px;
  outline: none;
}
.di--pointer {
  cursor: pointer;
}
.di--input-lg::placeholder {
  color: #949eaa;
  opacity: 1;
}
.di--input-label-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  align-self: stretch;
}
.di--label-input {
  color: #000;
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.di--input-lg:focus,
.di--input-lg:active {
  border-radius: 6px;
  border: 1px solid #0097cb;
  background: #fff;
  box-shadow: 0px 0px 1px 1px rgba(21, 197, 206, 0.16);
}
.di--button-lg {
  display: flex;
  height: 52px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.di--button-primary {
  background: #0097cb;
  transition: background 0.3s ease;
}
.di--button-primary:hover {
  background: #0cc1ff;
}
.di--button-primary:active {
  background: #0085b3;
}
.di--button-primary:disabled {
  background: #beeeff;
}
.di--checkbox-custom {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #0097cb;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  background: #fff;
  vertical-align: middle;
}
.di--checkbox-custom:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 6px;
  height: 11px;
  border: solid #0097cb;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
.di--input-error {
  border: solid 0.5px #b52020 !important;
}
#error-message {
  color: #b52020;
  font-family: Lexend;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
