body{
  background-color: #F3EEFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.honk {
  font-family: "Honk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "MORF" 15,
    "SHLN" 50;
}

h1 { /*Joanne's tag*/
  font-family: "Honk", system-ui;
  font-size: 80px;
  text-align: center;
  margin: 10px 0 20px;
}

.quotes { /*mini text*/
  text-align: center;
  font-size: 18px;
  margin: 20px 20px;
  font-family: "Bitcount Grid Single Ink", system-ui;
}

#form-title {
margin-top: 0px;
margin-bottom: 30px;
}

.input-group { 
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.input-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: calc(100% - 110px);
}

.input-group label {
  color: #555;
  font-weight: bold;
  margin-right: 10px;
}

.container {
  border-radius: 10px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
  padding: 50px 50px;
  text-align: center;
  width: 400px;
  margin: 0 auto;
}

button {
  background-color: blue;
  border: none;
  color: white ;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

button:hover{
  background-color: burlywood
}