body {
  background-color: #3f51b5;
  color: white;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#countdown div {
  font-size: 1.25rem;
  min-width: 70px;
}

#countdown span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

input::placeholder {
  color: #ccc;
}

/* Ensure spacing on small screens */
@media (max-width: 576px) {
  #countdown div {
    font-size: 1rem;
  }

  #countdown span {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  .lead {
    font-size: 1rem;
  }
}
