
/* Force center the login box */
html, body {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #000 !important;
    color: #fff !important;
    font-family: Arial, sans-serif;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Hide navbars for login page */
header.navbar, nav.navbar-inverse, .navbar-fixed-top {
    display: none !important;
}

/* Login box styling */
.login-container {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.login-container img.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #555;
    background: #000;
    color: white;
}

.btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    color: white;
    background: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #555;
}
