   * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', sans-serif;
    }

    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;
    }

    /* 🔴 DARK RED OVERLAY */
    body::before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(50,0,0,0.7)); */
        z-index: 0;
    }

    /* 🔥 LEFT SECTION WITH SPACING */
    .left-panel {
        width: 450px;
        margin-left: 80px; /* 👈 LEFT GAP (IMPORTANT) */
        z-index: 2;
    }

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

    /* ✨ GLOW BORDER */
    .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;
    }

    /* 🔴 INNER LIGHT */
    .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;
    }

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

    /* HEADING */
    .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 */
    label {
        font-size: 13px;
        color: #aaa;
        margin-bottom: 6px;
        display: block;
    }

    /* INPUT */
    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);
    }

    /* BUTTON */
    .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-p{
        text-align: center;
        margin-bottom: 0px !important;
        margin-top: 10px;
    }

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

    label{
        color:red;
    }

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

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