/* Custom Variables for consistency */
:root {
    --lpu-red: #8c0001;
}

/* Navbar styles */
.lpu-navbar {
    background-color: var(--lpu-red);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lpu-logo {
    max-height: 90px;
}

/* Form Styles */
.card-header {
    background-color: var(--lpu-red) !important;
}

.btn-register {
    background-color: var(--lpu-red) !important;
    color: white !important;
}

.btn-register:hover {
    background-color: #6b0001 !important;
}

#logoutBtn:hover {
    background-color: #8c0001 !important; 
    color: white !important;              
    border-color: #8c0001 !important;     
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lpu-logo {
        max-height: 93px;
    }
}