@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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;
    font-family: 'Poppins';
    width: 100%;
    background-color: rgb(233, 240, 246)
}

.btn-check:not(:checked) + .btn-outline-dark {
    background-color: #fff !important;
    border-width: .6667px;
    border-color: #555 !important;
    color: #000 !important;
}

.btn-check:not(:checked) + .btn-outline-dark:hover {
    background-color: #fff !important;
    border-color: #333 !important;
    color: #000 !important;
    border-width: .6667px;
}

.btn-check:checked + .btn-outline-dark {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    border-width: .6667px;
}

.btn-check:checked + .btn-outline-dark:hover {
    background-color: #555 !important;
    border-color: #555 !important;
    color: #fff !important;
    border-width: .6667px;
}

.btn-primary {
    background-color: rgb(10, 65, 127) !important;
    border-color: rgb(10, 65, 127) !important;
}

.btn-primary:hover {
    background-color: rgb(15, 90, 170) !important;
    border-color: rgb(15, 90, 170) !important;
}

h3 {
    font-weight:600;
}

.form-label,
.form-check-label {
    font-weight: 500;
}

.form-control,
.form-select,
.btn-check + label.btn,
.btn-primary {
    border-radius: 1rem;
}

.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;
}