form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background-color: #0f9d58;
  color: white;
  border-radius: 1rem;
}

form > .col {
  display: flex;
  flex-direction: column;
  width: max-content;
  color: black;
}

header {
  width: 100%;
}

header h3 {
  font-size: 1.2rem;
  margin: 0;
}

header p {
  padding: 0.25rem 0 0.25rem 0;
  margin: 0;
  line-height: 1.4;
  font-size: 0.9rem;
}


input[type="text"] {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  font-family: monospace;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

input.clickable {
  cursor: pointer;
}

hr {
  border: none;
  border-top: 2px solid white;
}
