/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --lotto-bg: #020617;
  --lotto-surface: #0f172a;
  --lotto-surface-strong: #1e293b;
  --lotto-border: #334155;
  --lotto-text: #e2e8f0;
  --lotto-muted: #94a3b8;
  --lotto-brand: #facc15;
}

body {
  font-family: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6,
button, input, select, textarea {
  font-family: "Space Grotesk", "Instrument Sans", "Avenir Next", sans-serif;
}

.lotto-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.auth-card {
  width: 100%;
  max-width: 560px;
  background: #0a1326;
  border: 1px solid var(--lotto-border);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

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

.auth-title {
  margin: 0;
  color: var(--lotto-brand);
  font-size: clamp(3.1rem, 6vw, 4.4rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.auth-subtitle {
  margin: 12px 0 0;
  font-size: 1rem;
  color: var(--lotto-muted);
}

.auth-field {
  margin-bottom: 18px;
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lotto-muted);
}

.auth-input {
  width: 100%;
  min-height: 52px;
  background: #0f1d3a;
  border: 1px solid var(--lotto-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--lotto-text);
  font-size: 1rem;
}

.auth-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lotto-muted);
}

.auth-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  background: var(--lotto-brand);
  color: #111827;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  cursor: pointer;
}

.auth-link-row {
  margin: 22px 0 6px;
  text-align: center;
  color: var(--lotto-muted);
}

.auth-link-row--last {
  margin: 0;
}

.auth-link-primary {
  color: var(--lotto-brand);
  text-decoration: underline;
  font-weight: 700;
}

.auth-link-muted {
  color: var(--lotto-muted);
  text-decoration: underline;
}

.slot-helper-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.82);
  color: #cbd5e1;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.slot-helper-link:hover {
  color: #fff7cc;
  border-color: rgba(250, 204, 21, 0.38);
}

@media (max-width: 640px) {
  .auth-shell {
    padding: 16px;
  }

  .auth-card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
}
