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;
}

.btn {
  border-radius: 8px;
  font-weight: 600;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.start-page {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.start-page__top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.start-page__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.25rem 0.5rem;
  background: #fff;
}

.start-page__logo {
  display: block;
  width: 280px;
  height: 78px;
  max-width: 100%;
  object-fit: contain;
}

.start-page__center {
  margin-top: 3rem;
}

.start-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.start-page__description {
  max-width: 900px;
  margin: 0.5rem auto;
  font-size: 1.05rem;
}

.start-page__signin-wrapper {
  margin-top: 2rem;
}

.start-page__signin-btn {
  min-width: 320px;
}

.reports-font-smaller {
  font-size: 0.875rem;
}

@media (max-width: 576px) {
  .start-page__signin-btn {
    min-width: 0;
    width: 100%;
  }
}

.app-wait-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
}

.app-wait-overlay.is-visible {
  display: flex;
}

.app-wait-overlay__content {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  min-width: 300px;
  max-width: 90vw;
}

.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;
}