html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
  --ds-typography-size-10: 29px;
  /* --ds-typography-family-brand: BMWGroupTNCondensedPro-Medium; */
  --ds-typography-size-10: 23px;
  --ds-typography-weight-title-lg: 500;
  --ds-typography-line-height-title-lg: 28px;
  --ds-typography-transform-uppercase: uppercase;

}

.docs.title-lg {
  font-size: var(--ds-typography-size-10) !important;
}


.title-lg
{
  /* font-family: var(--ds-typography-family-brand); */
  font-size: var(--ds-typography-size-title-lg);
  font-weight: var(--ds-typography-weight-title-lg);
  line-height: var(--ds-typography-line-height-title-lg);
  text-transform: var(--ds-typography-transform-uppercase);
}

/* Date input styling for dd/mm/yyyy format */
.date-input {
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

.date-input:focus {
  border-color: #258cfb;
  box-shadow: 0 0 0 0.1rem rgba(37, 140, 251, 0.25);
}

.date-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25);
}

.date-input.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.1rem rgba(25, 135, 84, 0.25);
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Placeholder styling for date inputs */
.date-input::placeholder {
  color: #6c757d;
  opacity: 0.7;
}