html {
  background: linear-gradient(180deg, #f472b6, #ec4899);
  height: 100svh; 
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}


.card {
  max-width: 350px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  background: #fff;
}


.card input,
.card select {
  width: 100%;
  padding: 7px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}


h2 {
  color: #ec4899;
  margin-bottom: 1.5rem;
}



label {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #555;
  margin-top: 1rem;
}


button {
  margin-top: 1.5rem;
  background-color: #ec4899;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 1.5rem auto 0 auto; /* centralizado */
}

button:hover {
  background-color: #d63384;
}