/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --marine: #0a1452;
  --nacht: #060b3a;
  --neonrot: #ec3a3a;
  --gelb: #f0ee2c;
  --creme: #f8f6ef;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--nacht);
  color: var(--creme);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

main {
  text-align: center;
  padding: 2rem;
  max-width: 40rem;
}

.logo {
  color: var(--creme);
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

h1 em {
  color: var(--gelb);
  font-style: italic;
}

p {
  margin-top: 1rem;
  color: rgba(248, 246, 239, 0.8);
  line-height: 1.6;
}

.badge {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(248, 246, 239, 0.2);
}

.badge.up {
  background: rgba(240, 238, 44, 0.12);
  color: var(--gelb);
}

.badge.down {
  background: rgba(236, 58, 58, 0.15);
  color: var(--neonrot);
}

.teaser {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--creme);
}

.teaser strong {
  color: var(--gelb);
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--neonrot);
  color: var(--creme);
  text-decoration: none;
  font-weight: 600;
}

.authbar {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.link {
  background: none;
  border: none;
  color: var(--gelb);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}

/* Auth-Seite */
.auth {
  width: 100%;
  max-width: 24rem;
}

.auth .back {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(248, 246, 239, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

.auth .error {
  margin-top: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
  background: rgba(236, 58, 58, 0.15);
  color: var(--neonrot);
  font-size: 0.9rem;
}

.card {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.card label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.card input[type="email"],
.card input[type="password"],
.card input[type="text"] {
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(248, 246, 239, 0.2);
  background: rgba(248, 246, 239, 0.06);
  color: var(--creme);
  font: inherit;
}

.card button {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.card .primary {
  background: var(--neonrot);
  color: var(--creme);
}

.card .secondary {
  background: rgba(240, 238, 44, 0.15);
  color: var(--gelb);
}

.card .signup {
  border-top: 1px solid rgba(248, 246, 239, 0.15);
  padding-top: 1rem;
}

.card .signup summary {
  cursor: pointer;
  color: rgba(248, 246, 239, 0.8);
  font-size: 0.9rem;
}

.card fieldset {
  border: 1px solid rgba(248, 246, 239, 0.2);
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  margin: 0.8rem 0;
}

.card .radio {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

