* { box-sizing: border-box; }

html, body {
  font-size: 20px;
  height: 100vh;
  margin: 0;
  background-color: #fff;
}

.form-wrapper {
  position: relative;
  display: grid;
  height: 100%;
  margin: 0;
  place-items: center;
  max-width: 100%;
  padding: 2rem;
}

form {
  margin: auto;
  width: 100%;
  max-width: 400px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
}

input {
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  font-size: 1rem;
  border: 0;
  border-radius: 0.125rem 0.25rem;
  background-color: hsl(222, 20%, 95%);
}

select {
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  font-size: 1rem;
  border: 0;
  border-radius: 0.125rem 0.25rem;
  background-color: hsl(222, 20%, 95%);
}

button {
  display: block;
  padding: 0.5rem;
  border: 0;
  border-radius: 0.125rem 0.25rem;
  background-color: #40cb90;
  color: #fff;
  margin: 2rem 0 0 auto;
}

input:focus,
button:focus{
  outline: 0;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


span {
  white-space: nowrap;   /* Prevents breaking onto a new line */
}

.pill-link {
  background-color: #40cb90;   /* Blue background for the pill */
  color: white;                /* White text */
  padding: 5px 15px;           /* Padding to create a pill shape */
  border-radius: 50px;         /* Rounded corners */
  text-decoration: none;       /* Remove the underline from the link */
  font-weight: 300;            /* Thinner text */
  font-size: 14px;             /* Optional: Adjust font size */
  transition: background-color 0.3s ease; /* Smooth background change on hover */
}

.pill-link:hover {
  background-color: #00b35f;   /* Darker blue when hovered */
}
