html, body{
  height: 100%;
}

body{
  margin: 0px;
}

/*
button{
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:disabled{
  opacity: 0.5;
  cursor: default;
}

button:hover{
  background-color: #0069d9;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
}

input:user-valid {
  border-color: green;
}

textarea {
  height: 200px;
  resize: vertical;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 16px;
  background-color: #f8f9fa;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

*/
