.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  background: #f8f9ff;
}

.auth-left {
  position: relative;
  padding: 56px;
  color: white;
  background:
    radial-gradient(circle at 20% 5%, rgba(124, 77, 255, 0.55), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(47, 107, 255, 0.35), transparent 34%),
    linear-gradient(180deg, #081747, #04091f);
  overflow: hidden;
}

.auth-left::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(109, 61, 244, 0.18);
  bottom: -80px;
  right: -80px;
}

.auth-logo {
  display: inline-flex;
  margin-bottom: 54px;
}

.auth-logo img {
  width: 190px;
  height: auto;
}

.auth-left h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  max-width: 520px;
}

.auth-left > p {
  color: #cbd5ff;
  line-height: 1.7;
  margin: 18px 0 36px;
  max-width: 520px;
}

.auth-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 520px;
}

.auth-feature span {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(109, 61, 244, 0.38);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.auth-feature h3 {
  margin-bottom: 5px;
}

.auth-feature p {
  color: #cbd5ff;
  line-height: 1.5;
}

.auth-right {
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.auth-card {
  width: min(560px, 100%);
  background: white;
  border: 1px solid #dfe3ef;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.auth-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: #f1edff;
  border: 1px solid #ddd3ff;
  font-size: 2rem;
}

.auth-card h2 {
  text-align: center;
  font-size: 2rem;
  color: #0b1230;
  letter-spacing: -0.04em;
}

.auth-subtitle {
  text-align: center;
  color: #66708f;
  margin: 10px 0 30px;
}

.auth-card label {
  display: block;
  color: #0b1230;
  font-weight: 800;
  margin: 14px 0 8px;
}

.auth-card .input {
  background: white;
  color: #0b1230;
  border: 1px solid #dfe3ef;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 52px;
}

.password-wrap button {
  position: absolute;
  right: 10px;
  top: 7px;
  width: 38px;
  height: 38px;
  border: 0;
  background: #f1f5f9;
  border-radius: 10px;
  cursor: pointer;
}

.auth-btn {
  width: 100%;
  margin-top: 22px;
  min-height: 48px;
}

.auth-message {
  color: #dc2626;
  text-align: center;
  margin-top: 14px;
  font-size: 0.9rem;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
  color: #66708f;
}

.auth-divider span {
  height: 1px;
  background: #dfe3ef;
}

.auth-switch {
  text-align: center;
  color: #66708f;
}

.auth-switch a {
  color: #6d3df4;
  font-weight: 900;
}

.auth-back {
  display: block;
  text-align: center;
  color: #66708f;
  margin-top: 18px;
  font-size: 0.9rem;
}

.create-password-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dfe3ef;
  border-radius: 18px;
  background: #f8f9ff;
}

.create-password-box h3 {
  color: #0b1230;
  margin-bottom: 6px;
}

.create-password-box p {
  color: #66708f;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.create-password-box .input {
  margin-bottom: 10px;
}

@media(max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }

  .auth-card {
    padding: 30px 22px;
  }
}