.login-body {
    background: url('../img/tarred.jpeg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Quicksand', sans-serif;
}

.login-wrapper {
    background: rgba(0,0,0,0.7);
    height: 100vh;
    position: relative;
}

.login-box {
    width: 60%;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: 300ms;
}

.login-box-info {
    background: #0D47A1;
    padding: 45px 30px !important;
    text-align: center;
}

.login-box-info p { line-height: 25px !important; }

.login-box-form {
    background: #fff;
    color: #333;
    padding: 45px 30px !important;
}

.login-box-info a,
.login-box-form button,
.login-box-form input[type=submit] {
    font-size: 15px;
    font-weight: 500;
}

.btn-theme {
    background: #0D47A1;
    color: #fff;
    border: none;
}

.btn-theme:hover { background: #0b3d8c; color: #fff; }

.text-primary { color: #0D47A1 !important; }

.login-box::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.diya-indicator {
    position: absolute;
    top: 10px; right: 10px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffcc00, #ff9933);
    box-shadow: 0 0 10px rgba(255,204,0,0.5);
    animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes neonGlow {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(255,255,255,0)) brightness(1); }
    50% {
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.8))
                drop-shadow(0 0 20px rgba(255,255,255,0.4))
                brightness(1.2);
        transform: scale(1.03);
    }
}

.neon-glow { animation: neonGlow 2.5s ease-in-out infinite; }

.error-msg { color: #dc3545; font-size: 13px; margin-top: 8px; }
.success-msg { color: #198754; font-size: 13px; margin-top: 8px; }

@media (max-width: 767px) {
    .login-box {
        width: 95%;
        padding: 15px;
    }
    .login-box-info,
    .login-box-form {
        padding: 25px 15px !important;
    }
}

@media (max-width: 576px) {
    .login-box { width: 100%; top: 0; left: 0; transform: none; position: relative; margin: 0 auto; }
    .login-wrapper { height: auto; min-height: 100vh; padding: 20px 0; display: flex; align-items: center; }
}
