/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Apply Montserrat font to the entire page */
html, body {
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
}

h1 {
  text-align: center;
  font-size: 25px;
}

form {
  margin-top: 20px;
}

.question {
  margin-bottom: 20px;
}

.question p {
  font-weight: bold;
}

#cadastro label {
  display: block;
  margin-top: 20px;
}

#cadastro input,
#cadastro select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.comments {
  margin-bottom: 20px;
}

.comments p {
  font-weight: bold;
}

#comentarios {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #d65f00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

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

.footer {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-size: black;
    position: relative;
    bottom: 0;
    width: 100%;
}