  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0D0D0F;
    --bg2: #141416;
    --border: #1E1E22;
    --gold: #D4A849;
    --w: #ECEAE6;
    --w2: #B0AEA8;
    --w3: #5A5855;
    --red: #E05C5C;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--w);
  font-family: 'DM Sans', sans-serif;
}


.glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224,92,92,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 0;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--w2);
    margin-bottom: 48px;
    animation: fadeUp 0.5s ease both;
}

.logo span { color: var(--gold); }

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 8vw, 80px);
    line-height: 1;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: fadeUp 0.5s ease 0.1s both;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 4vw, 32px);
    color: var(--w3);
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: fadeUp 0.5s ease 0.2s both;
}

a.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold);
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #0D0D0F;
    text-decoration: none;
    transition: opacity 0.2s;
    animation: fadeUp 0.5s ease 0.4s both;
}

a.btn:hover { opacity: 0.88; }

p {
    font-size: 15px;
    color: var(--w2);
    text-align: center;
    max-width: 380px;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 36px;
    animation: fadeUp 0.5s ease 0.2s both;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    animation: fadeUp 0.5s ease 0.3s both;
}

input[type="email"] {
    width: 100%;
    height: 50px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--w);
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]::placeholder { color: var(--w3); }
input[type="email"]:focus { border-color: rgba(212,168,73,0.4); }

button {
    width: 100%;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: #0D0D0F;
    cursor: pointer;
    transition: opacity 0.2s;
}

button:hover { opacity: 0.88; }

.note {
    font-size: 11px;
    color: var(--w3);
    text-align: center;
    margin-top: 10px;
}

.success {
    display: none;
    text-align: center;
    padding: 16px;
    background: rgba(76,175,130,0.08);
    border: 1px solid rgba(76,175,130,0.2);
    border-radius: 8px;
    color: #4CAF82;
    font-size: 14px;
}

.success.show { display: block; }

.error {
  display: none;
  padding: 14px;
  background: rgba(224,92,92,0.08);
  border: 1px solid rgba(224,92,92,0.2);
  border-radius: 8px;
  color: #E05C5C;
  font-size: 14px;
  text-align: center;
}

.error.show { display: block; }

footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: var(--w3);
    z-index: 2;
}

footer a {
  color: var(--w3);
  text-decoration: none;
}

footer a:hover {
  color: var(--w2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}