.auth-body {
  min-height: 100vh;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 48px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(17, 21, 28, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.account-card {
  max-width: 820px;
}

.auth-brand {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  margin: 0 auto 18px;
  display: block;
}

.auth-brand h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.auth-brand p,
.account-copy {
  color: var(--text-muted);
  line-height: 1.6;
}

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

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.auth-field input {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(5, 8, 10, 0.8);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.auth-message {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.auth-message.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.auth-message.success {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7dd3fc;
}

.auth-switch {
  margin-top: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-switch a {
  color: var(--accent);
  font-weight: 600;
}

.account-grid {
  display: grid;
  gap: 18px;
}

.account-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: rgba(5, 8, 10, 0.45);
}

.account-panel h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.account-details {
  display: grid;
  gap: 14px;
}

.account-details dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.account-details dd {
  font-size: 16px;
  font-weight: 600;
}

.account-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .auth-card {
    padding: 28px 20px;
  }
}
