
:root {
    --eanify-ink: #111827;
    --eanify-orange: rgb(255, 87, 34);
    --eanify-blue: rgb(33, 150, 243);
    --eanify-green: rgb(76, 175, 80);
    --eanify-yellow: rgb(255, 201, 63);

    --color-primary: #2196F3;
    --color-primary-light: #BBDEFB;
    --color-secondary: #FF5722;
    --color-accent: #4CAF50;
    --color-neutral-light: #F5F5F5;
    --color-neutral-dark: #212121;
    --layout-margin-mobile: 16px;
    --layout-margin-desktop: 32px;
    --layout-max-width-desktop: 1260px;
    --layout-section-space-mobile: 48px;
    --layout-section-space-desktop: 72px;
    --navbar-height: 50px;
    --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-brand: "Space Grotesk", "Inter", system-ui, sans-serif;
}

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;
}