body {
  background: #B2B2B2;
  color: #2E2E2E;
}

form {
  background: #D4AF37;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

button {
  background-color: #B2B2B2;
  color: #2E2E2E;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
}

button:hover {
  background-color: green;
  color: #fff;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.goldman-regular {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.goldman-bold {
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-style: normal;
}

#mainContent {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

#taskForms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

#taskForms form {
  min-width: 180px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

#createTask {
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 24px;
  border-color: #D4AF37;
  border-width: 2px;
  border-radius: 8px;
  background: #fff;
}

#viewTasks {
  width: 90%;
  margin: 0;
  padding: 24px;
  border-color: #D4AF37;
  border-width: 10px;
  border-radius: 8px;
  background: #fff;
}