@import "global.css";
@import "header.css";
@import "footer.css";

.container {
  display: flex;
  margin: 20px;
  justify-content: space-between;
  align-items: top;
  margin-top: 30px;
}

.info {
  text-align: left;
  min-width: 225px;
  margin: 0 20px;
}

h1 {
  font-size: 30px;
}

.form {
  margin: 0 20px;
}

.form button {
  background-color: black;
  color: white;
  font-size: 20px;
  border-radius: 10px;
  padding: 5px 10px;
  margin-top: 20px;
}

.form-row {
  margin-bottom: 20px;
}

.form-input {
  display: block;
}

.form-message {
  height: 2rem;
  color: green;
}

.form-error {
  color: red;
}

@media (min-width: 900px) {
  .container {
    margin-top: 140px;
  }
}
