.form-control {
    height: 42px !important;
}

.form-control-sm {
    height: 42px !important;
}

.form-control-lg {
    height: 42px !important;
}

.form-select {
    height: 42px !important;
}

.form-select-sm {
    height: 42px !important;
}

.form-select-lg {
    height: 42px !important;
}

/* For textarea, we should use min-height instead of height to allow expansion */
textarea.form-control,
textarea.form-control-sm,
textarea.form-control-lg {
    min-height: 42px !important;
    height: auto !important;
}

.form-label {
    font-family: Roboto;
    font-weight: 450;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: #8F8F8F;
}

.form-section-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
  }


/* Form control border colors */
.form-control {
    border-color: #D3D3D3 !important;
}

.form-select {
    border-color: #D3D3D3 !important;
}

.form-check-input {
    border-color: #D3D3D3 !important;
}

/* Form control active/focus border color override */
.form-control:focus {
    border-color: #51A1C8 !important;
    box-shadow: none !important;
  }
  
  .form-select:focus {
    border-color: #51A1C8 !important;
    box-shadow: none !important;
  }
  
  .form-check-input:focus {
    border-color: #51A1C8 !important;
    box-shadow: none !important;
  }