input[type="date"].form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  color: #000;
  line-height: 1.2;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
  margin-right: 8px;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

input[type="date"].form-input::-webkit-datetime-edit,
input[type="date"].form-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  height: 4rem;
  padding: 1.25rem 0.75rem 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #86b7fe;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
  position: absolute;
  top: 1.4rem;
  left: 0.75rem;
  background: transparent;
  padding: 0 0.25rem;
  color: #737373;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease all;
  font-weight: 300;
}

.form-input:focus + .form-label,
.form-input.not-empty + .form-label {
  top: 0.25rem;
  left: 0.5rem;
  font-size: 0.75rem;
}

.form-select {
  display: block;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0.5rem 0rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 4 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0L0 2h4L2 0zm0 5L0 3h4L2 5z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
}