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;
  background-color: #f5f7f9;
}

.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;
}

.upload-page {
  display: flex;
  justify-content: center;
  padding: 8vh 0 2rem;
}

.upload-panel {
  width: min(100%, 36rem);
  padding: 2rem;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgb(20 31 43 / 8%);
}

.upload-panel h1 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.upload-panel .btn {
  min-width: 7rem;
}

@media (max-width: 575.98px) {
  .upload-page {
    padding-top: 2rem;
  }

  .upload-panel {
    padding: 1.25rem;
  }
}
