* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.vesali-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.vesali-dynamic-form {
  display: flex;
  flex-direction: column;
}

.vesali-label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.vesali-input, .vesali-select, .vesali-button {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.vesali-input:focus, .vesali-select:focus {
  border-color: #007bff;
  outline: none;
}

.vesali-button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vesali-button:hover {
  background-color: #0056b3;
}

.vesali-inline-fields {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vesali-inline-fields .vesali-input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.vesali-inline-fields #vesaliDDD {
  width: 20%;
}

.vesali-inline-fields #vesaliTelefone {
  width: 75%;
}

#vesaliOutroAreaContainer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#vesaliOutroAreaContainer.show {
  max-height: 100px;
  opacity: 1;
}
