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;
}
.language-switcher {
    display: flex;
    align-items: center;
}

.form-check-input {
    cursor: pointer;
    width: 3rem !important;
    height: 1.5rem !important;
    margin-left: 0 !important;
}

.form-check.form-switch {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.form-check-label {
    cursor: pointer;
    margin-left: 0.5rem;
    font-weight: 500;
}

.lang-label {
    min-width: 2rem;
    display: inline-block;
    text-align: center;
}
.form-check-input {
    transition: background-position .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, transform .15s ease-in-out !important;
}

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .form-check-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

.lang-label {
    transition: all 0.3s ease;
}