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;
}

.uplprogress
{
    display: block;
    height: 3px;
    width: 100%;
    background-color: #76979d;
}

/* ---------- Landing / marketing page ---------- */
.hero-section
{
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-badge
{
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.4rem 0.9rem;
    font-weight: 500;
}

.hero-title
{
    max-width: 900px;
    margin: 0 auto;
}

.text-gradient
{
    background: linear-gradient(90deg, #ffe066, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle
{
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number
{
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.stat-label
{
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

.feature-card
{
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .feature-card:hover
    {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

.feature-icon
{
    font-size: 2rem;
}

.bg-light-subtle
{
    background-color: #f8f9fb;
}

.step-number
{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section
{
    background: linear-gradient(135deg, #6610f2 0%, #0d6efd 100%);
    color: #fff;
}

    .cta-section .lead
    {
        color: rgba(255, 255, 255, 0.9);
    }
.activelink
{
    text-decoration: none;
    color: #0d6efd;
    cursor: pointer;
}

.autocomplete
{
    position: relative;
    display: initial;
}

    .autocomplete .options
    {
        position: absolute;
        left: 0;
        background: white;
        width: 100%;
        padding: 0;
        z-index: 10;
        border: 1px solid #ced4da;
        border-radius: 0.5rem;
        box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    }

    .autocomplete .option
    {
        display: block;
        padding: 0.25rem;
        cursor: pointer;
        font-size: 14px;
    }

        .autocomplete .option .option-text
        {
            padding: 0.25rem 0.5rem;
        }

        .autocomplete .option:hover
        {
            background: #1E90FF;
            color: #fff;
        }

        .autocomplete .option.disabled
        {
            background-color: lightgrey;
            cursor: not-allowed;
        }

            .autocomplete .option.disabled:hover
            {
                background: lightgrey;
                color: var(--bs-body);
            }