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

:root {
      --bs-primary: #7e57c2;
      --bs-primary-rgb: 126, 87, 194;
      --bs-body-bg: #f8f6fc;
  }

body {
      background-color: var(--bs-body-bg);
  }

.hero-section {
      padding: 4rem 1rem;
      background: linear-gradient(135deg, #ede7f6, #d1c4e9);
      text-align: center;
  }

.feature-icon {
      font-size: 2rem;
      color: var(--bs-primary);
  }

.btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
  }

.btn-primary:hover {
      background-color: #6a1b9a;
      border-color: #6a1b9a;
  }

.text-theme {
    color: var(--bs-primary);
}