* {
  font-size: 11pt;
  font-family: "Lato", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 16px 0;
}

h1 {
  font-size: 18pt;
  text-align: center;
  margin: 0;
  padding: 16px 0;
}

h2 {
  font-size: 13pt;
  margin: 0;
  padding: 0;
}

form {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 680px;
  padding: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

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

.form-group {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 11pt;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0px;
}

input,
textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 11pt;
  padding: 6px 8px;
}

textarea {
  resize: none;
}

button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  form {
    border: none;
    box-shadow: none;
  }
}

@media print {
  form {
    border: none;
    box-shadow: none;
  }

  button {
    display: none;
  }
}
