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%;
}
.brand-orange {
    color: #ff8c00;
}
body {
    margin-bottom: 60px;
}

.navbar-brand img {
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

.navbar {
    animation: fadeInDown 0.5s ease;
}

.nav-link {
    position: relative;
    transition: all 0.2s ease;
}

    .nav-link:hover {
        color: #0d6efd !important;
        transform: translateY(-1px);
    }

.navbar-brand img {
    transition: transform 0.25s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.dropdown-menu {
    animation: dropdownFade 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Lost Parcel Page / Portal Theme Helpers (MERGED ADDITION)
   ========================================================= */

.page-wrap {
    min-height: calc(100vh - 72px);
    position: relative;
    padding: 3.5rem 1rem 4rem;
}

/* Glass / neon card */
.glass-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-weight: 700;
    letter-spacing: .2px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.75);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    font-size: .85rem;
}

.input-dark {
    background: rgba(2, 6, 23, 0.55) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    border-radius: 14px !important;
}

    .input-dark::placeholder {
        color: rgba(255,255,255,0.45);
    }

.divider-soft {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.18), rgba(255,255,255,0));
}

/* Gradient buttons */
.btn-gradient {
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg,#6366f1,#22d3ee);
    box-shadow: 0 10px 24px rgba(34,211,238,0.18);
    transition: transform .15s ease, filter .15s ease;
}

    .btn-gradient:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

.btn-gradient-outline {
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
    transition: background .15s ease;
}

    .btn-gradient-outline:hover {
        background: rgba(255,255,255,0.10);
    }
