/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Center everything on the page */
section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Full viewport height */
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

/* Center content within the container */
section>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  /* Optional: limit max width */
  text-align: center;
}

/* Style for the heading */
h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: Arial, sans-serif;
}


/* Optional: Add some responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  label {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  section {
    padding: 20px 15px;
  }
}