* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: url('/images/login/Login.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
        }

        body::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .left-panel {
            width: 450px;
            margin-left: 80px;
            z-index: 2;
        }

        .login-box {
            padding: 35px;
            border-radius: 18px;
            position: relative;
            color: #fff;
            background: rgba(15, 15, 15, 0.65);
            backdrop-filter: blur(20px);
            overflow: hidden;
        }

        .login-box::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 1px;
            background: #ffffff3b;
            -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .login-box::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 18px;
            background: radial-gradient(circle at top left, rgba(255, 0, 0, 0.15), transparent 40%);
            pointer-events: none;
        }

        .login-box img {
            height: 42px;
            margin-bottom: 20px;
        }

        .login-box h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .login-box h2 span {
            color: red;
        }

        .login-box p {
            color: #bbb;
            margin-bottom: 25px;
            font-size: 14px;
        }

        label {
            font-size: 13px;
            color: red;
            margin-bottom: 6px;
            display: block;
        }

        input,
        select {
            width: 100%;
            padding: 13px;
            margin-bottom: 16px;
            border-radius: 8px;
            border: 1px solid #2a2a2a;
            background: #0f0f0f;
            color: #fff;
            transition: 0.3s;
        }

        input:focus,
        select:focus {
            outline: none;
            border-color: #ff1a1a;
            box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
        }

        select option {
            background: #0f0f0f;
            color: #fff;
        }

        .btn-login {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(90deg, #ff1a1a, #990000);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
            margin-top: 1rem;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
        }

        .btn-p {
            text-align: center;
            margin-bottom: 0px !important;
            margin-top: 10px;
            color: #bbb;
            font-size: 14px;
        }

        .alert-danger {
            background: rgba(255, 0, 0, 0.15);
            border: 1px solid rgba(255, 0, 0, 0.4);
            color: #ff6666;
            border-radius: 8px;
            padding: 10px 14px;
            margin-bottom: 12px;
        }

        .alert-danger ul {
            margin: 0;
            padding-left: 18px;
        }

        @media (max-width: 768px) {
            body {
                justify-content: center;
            }

            .left-panel {
                margin-left: 0;
                width: 90%;
            }
        }