/* Background Image */
body {
    background-image: url('./../img/login_bg.png');
    /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glassmorphism Design */
.login-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    width: 600px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
}

.login-container h2 {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    color: white;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    height: 45px;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #4e73df;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.btn-primary {
    width: 100%;
    background-color: #4e73df;
    border: none;
    height: 45px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #3b5dc9;
}

.links {
    margin-top: 15px;
}

.links a {
    color: #b8c7f1;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}

@media print {

    .re-run,
    .btn-group {
        display: none !important;
    }
}