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 rgba(13, 76, 143, .35);
}

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

body {
  margin-bottom: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.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;
}
/* Unified flash messages */
.crm-flash-stack:empty {
    display: none;
}

.crm-flash-stack:not(:empty) {
    margin-bottom: 1rem;
}

.crm-flash-message {
    margin-bottom: .65rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 500;
}

.crm-flash-message:last-child {
    margin-bottom: 0;
}

.crm-flash-message > .bi {
    flex: 0 0 auto;
    font-size: 1rem;
}

.crm-flash-message .btn-close {
    margin-left: auto;
}
