html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f5f0e8;
  background-color: #0069d9;
  scroll-behavior: smooth;
}

#thankyou-container,
#error-container {
  display: none;
}

.tech-highlight {
  color: #fbff01;
}

#fixed-top {
  background-color: #0069d9;
}

.message-group {
  display: flex;
  justify-content: center;
}

#first-calltoaction button {
  font-size: 2em;
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
}

.call-to-action {
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 20px;
  color: #0069d9;
  background-color: #f5f0e8;
  border: 1px solid #f5f0e8;
  cursor: pointer;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.375rem;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.35);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

.highlight {
  background-color: #fbff01;
  color: #0069d9;
  padding: 8px 14px 8px 8px;
  border-radius: 4px;
}