@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
}

.form-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 500px; 
  width: 100%;
  margin: 20px;
  overflow-y: auto;
}

.form {
  padding-left: 15px; 
  padding-right: 15px; 
}
.logo-container {
  padding-top: 10px;
  display: flex;
  justify-content: center; 
  align-items: center; 
  width: 100%;
  background-color: #3c1d48;
  margin-bottom: 20px;
}

img {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 140px; 
  height: auto;
  margin-bottom: 12px; 
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px; 
}

.pergunta {
  color: #333;
  font-size: 1rem; 
  font-weight: 600;
}

label {
  color: #555;
  font-size: 0.9rem; 
  font-weight: 500;
  margin-bottom: 4px; 
}

input {
  padding: 10px; 
  font-size: 0.95rem; 
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  color: #555;
  transition: all 0.3s ease-in-out;
}

input:focus {
  border-color: #e26520;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(226, 101, 32, 0.6);
}

.buttonforms {
  padding: 12px;
  font-size: 1rem; 
  color: white;
  background-color: #44bd6c;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttonforms:hover {
  background-color: #0c9b3c;
}
.divclear{
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.clearButton {
  background-color: rgba(0, 0, 0, 0.178);
  color: #3d3c3c;
  font-size: 0.9rem; 
  padding: 7px 14px; 
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 20%;
  transition: background-color 0.3s ease;
}

.clearButton:hover {
  background-color: rgba(0, 0, 0, 0.301);
}

#responseMessage {
  margin-top: 15px; 
  font-size: 1rem; 
  color: #333;
}

.error-message {
  color: #ff0000;
  font-size: 0.85rem; 
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
