.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.form-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
}

.form-input:focus {
  outline: none;
  border-color: #29437F;
  box-shadow: 0 0 0 1px #29437F;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background-color: #29437F;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.alert {
  padding: 1rem;
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  border-radius: 0.375rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.form-check-input {
  width: 1.7rem;
  height: 1rem;
  margin-top: 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: white;
  cursor: pointer;
  appearance: none;
  position: relative;
}

.form-check-input:checked {
  background-color: #29437F;
  border-color: #29437F;
}

.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.35rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 112, 214, 0.3);
}

.form-check-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #111827;
}