@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");

* {
  box-sizing: border-box;
}

.form-heading {
  text-align: center;
  color: #e0e3e7;
  font-weight: 400;
}

body {
  margin: 0;
  font-family: "Open Sans";
  font-weight: 400;
  color: #e0e3e7;
  background-color: #565453;
}

.form-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 15px 80px 15px;
}

.form-group {
  margin-bottom: 10px;
}

.input-label {
  display: block;
  margin-bottom: 2px;
  padding: 5px 0px 5px 0px;
  color: #e0e3e7;
}

.text-input {
  padding: 8px;
  border: 1px solid lightgrey;
  width: 100%;
  font-family: "Open Sans";
}

.notes-textarea {
  padding: 6px 2px 2px 6px;
  border: 2px solid #000;
  font-family: "Open Sans";
  width: 100%;
  min-height: 80px;
}

.notes-textarea::placeholder,
.text-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.select {
  color: #333;
  padding: 8px 28px 8px 2px;
  width: 100%;
  border: 2px solid #000;
  border-radius: 0px;
  cursor: pointer;
  text-align: center;
  font-family: "Open Sans";
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.select:hover {
  border-color: #ed1c24;
}

.select:focus {
  outline: none;
  border-color: #ed1c24;
  box-shadow: 0 0 0 1px #ed1c24;
}

.hidden {
  display: none;
}

.error-message {
  color: red;
  margin-bottom: 5px;
  text-align: center;
}

.submit-button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  color: #e0e3e7;
  border: none;
  cursor: pointer;
  font-weight: 400;
}

.submit-button:hover {
  background-color: rgba(0, 0, 0, 1);
}

.confirmation {
  text-align: center;
  padding-top: 60px;
}

.confirmation-heading {
  color: #e0e3e7;
  font-weight: 400;
  margin-bottom: 15px;
}

.confirmation-text {
  color: #e0e3e7;
  text-align: center;
  line-height: 1.5;
}
