.auth-page {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 72px max(24px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,250,248,.76)),
    #fffaf8;
}

.auth-panel {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 24px 58px rgba(139, 30, 63, .1);
}

.auth-copy,
.auth-form {
  background: #fff;
  padding: 42px;
}

.auth-copy h1 {
  margin: 8px 0 0;
  color: #2d2628;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.08;
}

.auth-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #75696c;
  line-height: 1.9;
}

.auth-benefits {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.auth-benefits article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: #2d2628;
}

.auth-benefits svg {
  width: 22px;
  height: 22px;
  color: var(--burgundy);
}

.auth-form {
  display: grid;
  align-content: center;
  gap: 16px;
}

.auth-form label {
  color: #6f555d;
  font-size: 13px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.auth-error {
  display: block;
  margin-top: 6px;
  color: #9b1c31;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.auth-check {
  display: flex;
  gap: 8px;
  align-items: start;
  color: #75696c;
  line-height: 1.7;
}

.auth-check input {
  width: auto;
  height: auto;
  margin-top: 4px;
}

.auth-form .btn {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .auth-panel {
    grid-template-columns: 1fr;
  }

  .auth-copy,
  .auth-form {
    padding: 28px 22px;
  }
}
