body {
    min-height: 100%;
}
nav.navbar {
    background-image: url("/src/images/logos/limos4_white.svg");
    background-position: 5%;
    background-size: 150px;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    margin-top: 0;
    background: #f7f7f7;
}
nav.navbar .nav-link {
    color: #aaa !important;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
}

nav.navbar .nav-link i {
    margin-right: 3px;
}
.dropdown-menu li a {
    color: #aaa;
    font-size: 12px;
    padding: 10px;
    font-weight: 500;
}
.dropdown-item {
    background-color: #fff;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f7f7f7;
}
nav.navbar a:hover {
    color: #1a1a1a !important;
}

.navbar-toggler {
    display: none;
}

main {
    margin-top: 100px;
}

footer {
    margin-top: 50px;
    background-color: #f7f7f7;
}

footer .social-icons i {
    color: #dadada;
}
footer a:hover,
footer .social-icons a:hover i {
    color: white !important;
}
@media screen and (max-width: 1740px) {
    nav.navbar {
        background-image: none;
    }
}

/* Modern Forms CSS Enhancements */

/* Input focus effects */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    border-color: transparent;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Button hover effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.2s ease;
}

/* Card shadows on hover */
.bg-white:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: box-shadow 0.3s ease;
}

/* Password strength animations */
.flex-grow-1.bg-success {
    transition: background-color 0.3s ease;
}

/* Loading animation */
@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.btn[data-kt-indicator="on"] {
    animation: pulse-glow 1.5s infinite;
}

/* Icon transitions */
.las {
    transition: all 0.2s ease;
}

.btn:hover .las {
    transform: scale(1.1);
}

/* Input placeholders */
.form-control::placeholder {
    color: #a1a5b7;
    opacity: 0.8;
}

/* Enhanced alert styling */
.alert {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced notice boxes */
.notice {
    backdrop-filter: blur(5px);
    border-width: 1px !important;
}

@media screen and (max-width: 1400px) {
    nav.navbar .nav-link i {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .navbar-brand .badge {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        display: flex !important;
    }

    .navbar-brand .badge {
        display: block;
    }
}

