.auth-main {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-layout {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: stretch;
}

.auth-brand-col {
  flex: 1 1 0;
  min-width: 0;
  margin-right: 32px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 500px 400px at 20% 10%, rgba(201,151,76,0.10), transparent 60%),
    var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
}
.auth-brand-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.2;
}
.auth-brand-sub {
  font-size: 15px;
  color: var(--lp-body);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 360px;
}
.auth-brand-shot {
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.auth-brand-foot {
  font-size: 13px;
  color: var(--lp-muted);
  margin-top: 24px;
}

.auth-form-col {
  flex: 1 1 0;
  min-width: 0;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-title { font-size: 26px; font-weight: 600; margin: 0 0 6px; }
.auth-form-sub { font-size: 14px; color: var(--lp-muted); margin: 0 0 28px; }

.auth-field-wrap { position: relative; }
.auth-field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-muted);
  pointer-events: none;
  font-size: 15px;
}
.su-field .auth-field-wrap input { padding-left: 38px; }
.auth-toggle-password-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--lp-muted);
  padding: 4px;
}
.su-field .auth-field-wrap input[type="password"],
.su-field .auth-field-wrap input[name="password"] { padding-right: 36px; }

.auth-forgot-link {
  display: inline-block;
  font-size: 13px;
  color: var(--lp-gold);
  text-decoration: underline;
  margin: 2px 0 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.auth-alt-note {
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  margin-top: 24px;
}
.auth-alt-note a { color: var(--lp-gold); text-decoration: underline; }

.auth-security-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--lp-muted);
  margin-top: 22px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .auth-layout { flex-direction: column; }
  .auth-brand-col { margin-right: 0; margin-bottom: 20px; display: none; }
}

@media (max-width: 480px) {
  .auth-main { padding: 32px 18px; }
  .auth-form-col { padding: 32px 24px; }
}
