#valuation-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  color: #0f2f4e;
}

#valuation-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
  color: #0f2f4e;
}

input[type="checkbox"] [{
	width: 10px;	
}

input[type="textbox"] [{
	width: 100%;	
}

#valuation-form input {
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

#valuation-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

#valuation-form button {
  padding: 12px 25px;
  background-color: #009fe3;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

#valuation-form button:hover {
  background-color: #007ab8;
}

.ativos-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.ativos-wrapper label {
  display: flex;
  align-items: center;
  font-weight: normal;
  color: #333;
  gap: 8px;
}

#resultado-valuation {
  margin-top: 20px;
  background: #d9edf7;
  padding: 20px;
  border-radius: 8px;
  color: #0f2f4e;
  font-size: 18px;
  font-weight: bold;
}
