:root {
  color-scheme: dark;
  --page-bg: #07111f;
  --page-bg-2: #0d1b2d;
  --panel-bg: rgba(8, 18, 34, 0.72);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-soft: rgba(255, 255, 255, 0.68);
  --accent: #7cc4ff;
  --accent-strong: #4ea6ff;
}

html, body {
  min-height: 100%;
}

body.inbox-page,
body.editor-page {
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(78, 166, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(124, 196, 255, 0.12), transparent 24%),
    linear-gradient(145deg, var(--page-bg), var(--page-bg-2));
  color: #fff;
}

.click-cont {
  min-height: 100vh;
}

.auth-shell {
  position: relative;
  overflow: hidden;
}

.auth-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.28;
  pointer-events: none;
}

.auth-glow-left {
  top: -6rem;
  left: -6rem;
  background: rgba(78, 166, 255, 0.25);
}

.auth-glow-right {
  right: -4rem;
  bottom: -7rem;
  background: rgba(124, 196, 255, 0.18);
}

.eyebrow {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.auth-panel {
  position: relative;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 1.5rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.status-message {
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(124, 196, 255, 0.22);
  background: rgba(124, 196, 255, 0.08);
  color: #d6ecff;
}

.status-message-success {
  border-color: rgba(124, 196, 255, 0.22);
  background: rgba(124, 196, 255, 0.08);
  color: #d6ecff;
}

.status-message-error {
  border-color: rgba(255, 124, 124, 0.24);
  background: rgba(255, 124, 124, 0.08);
  color: #ffd8d8;
}

.auth-input {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.auth-input:focus {
  outline: none;
  border-color: rgba(124, 196, 255, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(78, 166, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.primary-action {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #3f91ff, #8fd0ff);
  color: #04101c;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: box-shadow 0.15s ease;
  box-shadow: 0 12px 24px rgba(78, 166, 255, 0.24);
}

.primary-action:hover {
  box-shadow: 0 16px 28px rgba(78, 166, 255, 0.3);
}

.primary-action:focus-visible {
  outline: 3px solid rgba(124, 196, 255, 0.4);
  outline-offset: 3px;
}

.form-label {
  letter-spacing: 0.02em;
}
