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%;
}

body {
  margin-bottom: 60px;
}

.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;
}

body.flash-screen-page {
  margin: 0;
  margin-bottom: 0;
  background: radial-gradient(circle at center, #1f3b5b, #0b1421);
  color: #f5f9ff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.flash-screen-body-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.flash-screen-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.flash-screen-content {
  text-align: center;
  max-width: 640px;
}

.flash-screen-logo {
  max-width: min(60vw, 420px);
  width: 100%;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.flash-screen-logo:hover,
.flash-screen-logo:focus {
  transform: scale(1.03);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
  outline: none;
}

.flash-screen-message {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .flash-screen-body-wrapper {
    padding: 1.5rem;
  }

  .flash-screen-message {
    font-size: 1rem;
  }
}
