body {
  font-family: 'Source Serif 4', serif;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
input[type="text"], input[type="email"], textarea, select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: inherit;
  padding: 0.5rem 0.25rem;
  border-radius: 0;
  box-shadow: none;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-bottom: 2px solid #6200ea;
  box-shadow: 0 1px 0 0 #6200ea;
}
label {
  font-size: 0.9rem;
  color: #eee;
}
button {
  background-color: #6200ea;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
}
button:hover {
  background-color: #3700b3;
}

input[type="checkbox"] {
  opacity: 1 !important;
  position: static !important;
  pointer-events: auto;
  margin-right: 0.5rem;
}

@media (max-width: 600px) {
  body {
    background-size: contain !important;
    background-repeat: repeat !important;
  }
}


nav {
  background-color: rgba(255, 182, 193, 0.4);
}
