.slab-form,
.slab-form .usa-input,
.slab-form .usa-select {
  max-width: none;
  width: 100%;
}

.show-spinner button.form-submit {
  display: none;
}

/* Spinner */
.show-spinner .loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #333;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

span.usa-hint {
  display: block;
  margin: 1rem 0;
}

label.usa-label {
  font-weight: bold;
}

.usa-input,
.usa-select {
  margin-bottom: 2rem;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
