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;
  overflow-x: hidden;
  position: relative;
  padding: 0;
  min-height: 100vh;
  font-family: 'Roboto', Helvetica Neue, sans-serif;
}

.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;
}

.logo {
  width: 25vh;
  max-width: 250px;
}

.address-card input.input-address {
  height: 6ch;
  border-radius: 4ch;
  background-color: #ffffff6b;
  backdrop-filter: blur(10px);
  border-color: transparent;
  color: #222;
}

.address-card input.input-address::placeholder {
  color: #000;
  opacity: .5;
}

.address-card {
  border: none;
  background: none;
}

.text-white {
  color: #fff !important;
}

.footer {
  background: transparent;
  color: #fff;
}

/* Split-screen layout styles */
.hero-image-section {
  position: relative;
}

.hero-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.form-section {
  position: relative;
}