/* Authentication Layout — editorial */

.auth-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper, #EEF0EA);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

/* 静的な editorial 背景アクセント（hero の aurora を弱めた版・浮遊なし） */
.auth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(42% 52% at 82% 8%, rgba(110, 139, 255, 0.14) 0%, rgba(110, 139, 255, 0) 62%);
}

/* 旧・浮遊装飾円は撤去 */
.auth-decoration {
  display: none;
}

.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-section {
    padding: 2rem 1rem;
  }
}
