﻿
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
#mainNavbar {
    transition: all .4s ease;
    padding: 18px 0;
    z-index: 1;
}

    #mainNavbar.scrolled {
        background: #000;
        backdrop-filter: blur(12px);
        box-shadow: 0 5px 25px rgba(0,0,0,.2);
        padding: 10px 0;
    }

.navbar-brand {
    font-size: 30px;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

    .nav-link:hover {
        color: #ffc107 !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: #ffc107;
        transition: .3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.offcanvas {
    width: 300px;
}

    .offcanvas .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

body {
    overflow-x: hidden;
}
.hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
}
.auth-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#6610f2);
    padding: 100px 0;
}