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;
}

.homepage-hero {
    background: linear-gradient(90deg, #258cfb 0%, #6a11cb 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}
.homepage-content {
    max-width: 600px;
    margin: 0 auto;
}
.homepage-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.homepage-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.homepage-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #258cfb;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.homepage-btn:hover {
    background: #258cfb;
    color: #fff;
}
.homepage-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 60px 0;
}
.feature {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 32px 24px;
    max-width: 320px;
    flex: 1 1 280px;
    text-align: left;
}
.feature h2 {
    font-size: 1.25rem;
    color: #258cfb;
    margin-bottom: 12px;
}
.feature p {
    color: #333;
    font-size: 1rem;
}