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;
}
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    border-radius: 12px;
    margin-top: 40px;
}

    .hero h1 {
        font-size: 48px;
        font-weight: bold;
    }

    .hero p {
        font-size: 18px;
        margin: 15px 0;
    }

    .hero .btn {
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 8px;
    }
body {
    background: #f8f9fa;
}
.custom-card {
    border: none;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    }

    .custom-card h4 {
        font-weight: bold;
    }

    .custom-card p {
        opacity: 0.9;
    }