@keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes glowEffect {
            0%, 100% {
                box-shadow: 0 0 10px #00ffc3, 0 0 30px #00ffc3;
            }
            50% {
                box-shadow: 0 0 15px #00ffc3, 0 0 45px #00ffc3;
            }
        }
        body {
/*            background-image: url("<?= base_url('img/warehouse.png') ?>");*/
/*            background: linear-gradient(145deg, #1b1b1b, #484848);*/
            background: linear-gradient(145deg, #1b1b1b, #686868);
            font-family: Arial, sans-serif;
            height: 100vh;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .login-box {
            width: 100%;
            max-width: 400px;
            padding: 30px;
            background: rgba(192,192,192,0.3);
            box-shadow: 0px 0px 15px 0px #000;
            color: #fff;
            border-radius: 8px;
            animation: fadeInUp 1s ease-in-out;
            text-align: center;
        }
        img {
            width: 150px;
            margin-bottom: 20px;
        }
        .login-box label {
            text-align: left;
            display: block;
            font-weight: bold;
        }
        .login-box input {
            border: 1px solid #aaa;
            background: #2d2d2d;  
            color: #fff;
            transition: all 0.3s ease-in-out;
        }
        .login-box input:focus {
            border-color: #00ffc3;
            animation: glowEffect 1.5s infinite alternate;
        }
        .login-box button {
            background-color: #888;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            font-size: 16px;
            transition: background-color 0.3s ease;
            width: 100%;
            margin-bottom: 10px;
        }
        .login-box button:hover {
            background-color: #00ffc3;
            color: #000;
        }
        .login-box button:focus {
            background-color: #00ffc3;
            color: #000;
        }
        .form-footer a {
            color: #ddd;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
            margin-top: 10px;
        }
        .form-footer a:hover {
            color: #00ffc3;
        }

        .footer a {
/*            color: #ddd;*/
            font-size: 14px;
            transition: color 0.3s ease;
/*            display: block;*/
/*            margin-top: 10px;*/
        }
        .footer a:hover {
            color: #00ffc3;
        }



/*.reset-box {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(192,192,192,0.3);
    box-shadow: 0px 0px 15px 0px #000;
    color: #fff;
    border-radius: 8px;
    animation: fadeInUp 1s ease-in-out;
    text-align: center;
}*/