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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

main {
  background: #171717;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 480px;
  width: 100%;
  padding: 40px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 8px;
}

.tagline {
  color: #a3a3a3;
  font-size: 1rem;
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4d4d4;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  color: #fafafa;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: #737373;
}

input::placeholder {
  color: #737373;
}

button {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

#submit-btn {
  background: #dc2626;
  color: white;
  margin-top: 12px;
}

#submit-btn:hover {
  background: #ef4444;
}

#submit-btn:disabled {
  background: #991b1b;
  color: #fca5a5;
  cursor: not-allowed;
}

#confirmation {
  text-align: center;
}

.hidden {
  display: none !important;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

#confirmation h2 {
  font-size: 1.5rem;
  color: #fafafa;
  margin-bottom: 8px;
}

#confirmation .subtitle {
  font-size: 1.125rem;
  color: #a3a3a3;
  margin-bottom: 24px;
}

.fine-print {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.5;
  margin-bottom: 24px;
}

#reset-btn {
  background: #262626;
  color: #e5e5e5;
}

#reset-btn:hover {
  background: #333333;
}

footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #262626;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #737373;
}

footer p:last-child {
  margin-top: 12px;
}

footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fafafa;
}

footer a img {
  opacity: 0.7;
  transition: opacity 0.2s;
}

footer a:hover img {
  opacity: 1;
}

.error {
  background: #450a0a;
  border: 1px solid #7f1d1d;
  color: #fca5a5;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
