body {
  font-family: Arial, sans-serif;
  background-color: #31c7ba;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  height: 100vh;
  margin: 0;
}

div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.77);
  padding: 20px;
  width: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

label {
  font-weight: bold;
}

input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  cursor: pointer;
  background-color: #e75212;
  color: white;
  width: 250px;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #eb1515;
}

p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  display: block;
}

.hidden {
  display: none;
}
