/* style.css */

/* Typography and layout */
body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  background-color: #0f0f0f;
  color: #ffffff;
}

/* Remove scrollbar for a cleaner feel */
::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Centering utility fallback */
main {
  max-width: 600px;
  width: 100%;
}

/* Form styling */
input[type="email"] {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]:focus {
  border-color: #aaa;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

button[type="submit"] {
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

/* Confirmation message */
#confirmation {
  transition: opacity 0.3s ease;
}

/* Optional subtle fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: fadeIn 0.6s ease-out both;
}
