:root {
  --gc-yellow: #F1F252;
  --gc-dark: #1E1A15;
  --gc-beige: rgb(239, 236, 231);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--gc-beige);
  margin: 0;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  color: var(--gc-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  color: var(--gc-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

button {
  padding: 1rem 2rem;
  background: var(--gc-yellow);
  color: var(--gc-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  margin-top: 1.5rem;
}

button:hover {
  box-shadow: 0 8px 20px rgba(241, 242, 82, 0.4);
}

button.secondary {
  background: #e0e0e0;
  color: var(--gc-dark);
  border: none;
  margin-bottom: 1rem;
}

button.secondary:hover {
  box-shadow: 0 8px 20px rgba(239, 236, 231, 0.6);
}

button.secondary + button {
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: var(--gc-dark);
}

.logo {
  text-align: center;
  margin-bottom: 1rem;
}

.logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.subtitle {
  color: var(--gc-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gc-yellow);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.symbol {
  width: 180px;
  height: 180px;
  margin: 1rem auto 1.5rem;
  display: block;
}

.note {
  background: #fffbf0;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #fbbf24;
  font-size: 0.9rem;
  color: #666;
  margin: 1.5rem 0;
  text-align: left;
}

.consent {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: left;
}

.consent label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--gc-dark);
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--gc-dark);
}

.consent a {
  color: var(--gc-dark);
  text-decoration: underline;
}

.error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.qr-wrapper {
  position: relative;
  display: inline-block;
}

.qr-code {
  display: block;
}

.qr-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 25%;
}

@media (max-width: 600px) {
  body {
    padding: 0 0 2rem 0;
    align-items: flex-start;
  }

  .container {
    border-radius: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 2rem 1.5rem;
  }
}
