.text-input {
  display: block;
  padding: 0.5vw;
  font-size: 1.6vw;
  line-height: 2.4vw;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.2vw solid #ced4da;
  border-radius: 0.25vw; 
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
}

.text-input:focus {
  outline: 0;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.4vw rgba(0, 123, 255, 0.25); 
}

.text-input.is-invalid {
  border-color: #dc3545;
}

.dropdown {
  padding: 0.25;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.8vw;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.2vw solid #ced4da;
  border-radius: 0.25vw;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dropdown:focus {
  outline: 0;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2vw rgba(0, 123, 255, 0.25);
}

#help-container {
	height: 100%;
    margin: 0;
    padding: 2.75vw 0.5vw;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
