html {
  font-size: 14px;
  }
.text-center {
    margin-top: 10em;
}

.navbar-brand {
    font-size: 3em;
}

.topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.brand {
    font-size: 44px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #000;
    padding-right: 6px;
    line-height: 1;
}

.global {
    flex: 1;
    min-width: 520px;
}

.global-title {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.global-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.search-input {
    width: min(520px, 52vw);
    padding: 6px 10px;
    border: 1px solid #bbb;
    border-radius: 2px;
}

.search-opt {
    padding: 6px 8px;
    border: 1px solid #bbb;
    border-radius: 2px;
    background: #fff;
}

.btn {
    padding: 6px 10px;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
}

.quick {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qbtn {
    padding: 6px 10px;
    border: 1px solid #777;
    text-decoration: none;
    color: #111;
    background: #fff;
    white-space: nowrap;
}

.qbtn-primary {
    border: 1px solid #0b57d0;
    background: #0b57d0;
    color: #fff;
}

.qbtn-ghost {
    border-style: dashed;
}

@media (max-width: 900px) {
    .topbar {
        flex-wrap: wrap;
    }

    .global {
        min-width: unset;
        width: 100%;
    }

    .quick {
        width: 100%;
        justify-content: flex-end;
    }

    .search-input {
        width: 100%;
    }
}


@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;
}