.auth-body {
  min-height: 100vh;
  margin: 0;
  overflow-y: auto;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 215, 179, 0.16), transparent 34rem),
    linear-gradient(145deg, var(--egacard-ivory), #eef6f1);
  color: var(--egacard-obsidian);
}

.auth-header {
  min-height: 230px;
  padding: 34px max(24px, calc((100vw - 1040px) / 2));
  background: linear-gradient(145deg, var(--egacard-forest), var(--egacard-obsidian));
  color: var(--egacard-white);
  position: relative;
  overflow: hidden;
}

.auth-header::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -110px;
  bottom: -190px;
  border-radius: 50%;
  background: rgba(0, 215, 179, 0.18);
}

.auth-header .auth-content,
.auth-header > a,
.auth-header > img {
  position: relative;
  z-index: 1;
}

.auth-header h2,
.auth-header h4 {
  color: var(--egacard-white);
}

.auth-header .img {
  max-height: 105px;
}

.auth-form {
  width: min(92%, 560px);
  margin: -58px auto 40px;
  padding: 30px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--egacard-mist);
  border-radius: var(--egacard-radius-card);
  background: var(--egacard-white);
  box-shadow: 0 22px 54px rgba(8, 13, 16, 0.13);
}

.auth-form h1 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.auth-form input:not([type="checkbox"]),
.auth-form select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--egacard-silver);
  border-radius: 12px;
  background: var(--egacard-white);
  box-sizing: border-box;
}

.auth-form label {
  margin-top: 8px;
  margin-bottom: 6px;
  font-weight: 700;
}

.auth-form .btn-primary {
  min-height: 50px;
  margin-top: 12px;
  border-radius: 12px;
  font-weight: 800;
}

.auth-form .invalid-feedback,
.auth-form .errorlist {
  color: var(--egacard-danger);
}

.auth-form .help-block,
.auth-form .form-text {
  color: #607078;
}

.division {
  color: var(--egacard-silver);
}

@media (max-width: 640px) {
  .auth-header {
    min-height: 190px;
    padding: 24px;
  }

  .auth-header .img {
    display: none;
  }

  .auth-form {
    margin-top: -42px;
    padding: 24px 20px;
  }
}
