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.app-body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(6, 182, 212, 0.22),
      transparent 35%
    ),
    #08111f;
  color: #f8fafc;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  min-height: 100vh;
}

.app-header {
  background: rgba(8, 17, 31, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.app-navbar {
  max-width: 980px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.app-brand {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.app-nav-links {
  display: flex;
  gap: 28px;
}

.app-nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
}

.app-nav-links a:hover {
  color: #67e8f9;
}

@media (max-width: 720px) {
  .app-navbar {
    gap: 24px;
    flex-direction: column;
    height: auto;
    padding: 18px;
  }
}
html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(6, 182, 212, 0.22),
      transparent 35%
    ),
    #08111f !important;
  color: #f8fafc;
}

body.app-body {
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(6, 182, 212, 0.22),
      transparent 35%
    ),
    #08111f !important;
}
