#speaker-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 5%;
  border-radius: 8px;
  background-color: #424242;
  min-width: 65%;
}

label {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column-reverse;
  color: #def;
  flex: 1 1 50%;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.row input {
  flex: 1 1 50%;
}

select,
input[type="number"] {
  border-radius: 5px;
  padding: 1%;
  width: 100%;
}
