/*
 * 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;
}

.support-us-button {
  position: relative;
  overflow: hidden;
  animation: supportUsGlow 2.4s ease-in-out infinite;
}

.support-us-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: skewX(-20deg);
  animation: supportUsShine 3.2s ease-in-out infinite;
}

@keyframes supportUsGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(250, 204, 21, .35); }
  50%      { box-shadow: 0 0 18px rgba(250, 204, 21, .8), 0 0 32px rgba(250, 204, 21, .35); }
}

@keyframes supportUsShine {
  0%   { left: -60%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}

.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;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--lotto-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lotto-border);
}

.auth-social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-social-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--lotto-border);
  background: #0f1d3a;
  color: var(--lotto-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.auth-social-button:hover {
  border-color: rgba(250, 204, 21, .38);
}

.auth-social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-social-button--facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.auth-social-button--facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
}

.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;
  }
}
