
    <style>
        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            font-family: 'Poppins', sans-serif;
        }

        body {
            margin: 0;
            background: radial-gradient(circle at top, #f6f7f9, #eef1f5);
        }

        /* PAGE WRAPPER */
        .auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        /* MAIN CARD */
        .auth-shell {
            width: 100%;
            max-width: 1100px;
            min-height: 620px;
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 40px 90px rgba(16, 24, 40, 0.12);
            overflow: hidden;
            display: flex;
        }

        /* LEFT PANEL */
        .auth-visual {
            flex: 1;
            background: linear-gradient(180deg, #f7f9fb, #eef2f6);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 40px;
        }

        .auth-visual img {
            max-width: 90%;
            height: auto;
            z-index: 2;
        }

        /* dotted background */
        .auth-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(128, 0, 0, 0.1) 1px,
                    transparent 1px);
            background-size: 22px 22px;
            opacity: 0.25;
        }

        /* RIGHT PANEL */
        .auth-form-panel {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 36px;
        }

        .login-content {
            width: 100%;
            max-width: 380px;
        }

        /* HEADINGS */
        .login-container h5 {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .login-container p.small {
            color: #6c757d;
            margin-bottom: 22px;
        }

        /* INPUTS */
        .form-control {
            border-radius: 10px;
            padding: 12px 14px;
            box-shadow: none;
            border: 1px solid #dee2e6;
        }

        .form-control:focus {
            border-color: #800000;
            box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.12);
        }

        /* ICON INPUT */
        .input-group {
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            z-index: 5;
        }

        .input-group input {
            padding-left: 40px;
        }

        /* BUTTONS */
        .theme-btn {
            border-radius: 999px;
            padding: 12px 16px;
            font-weight: 700;
            border: none;
        }

        .theme-btn-secondary {
            background: linear-gradient(135deg, #800000, #a31830);
            color: #fff;
        }

        .theme-btn-dark {
            background: #212529;
            color: #fff;
        }

        /* LINKS */
        .auth-link-bottom {
            font-size: 14px;
            text-align: center;
            margin-top: 14px;
        }

        .auth-link-bottom a {
            color: #800000;
            text-decoration: none;
            font-weight: 600;
        }

        .auth-link-bottom a:hover {
            text-decoration: underline;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .auth-shell {
                max-width: 520px;
                min-height: auto;
                flex-direction: column;
            }

            .auth-visual {
                display: none;
            }

            .auth-form-panel {
                padding: 36px 24px;
            }
        }

        /* ===== PASSWORD TOGGLE PILL FIX ===== */

        .auth-pass-inputgroup .password-addon {
            border-radius: 999px !important;
            width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
        }

        .auth-pass-inputgroup .password-addon:hover {
            background: rgba(128, 0, 0, 0.08);
        }

        .auth-pass-inputgroup .password-addon i {
            font-size: 1.1rem;
        }

        .auth-back-home {
            position: fixed;
            top: 22px;
            left: 50%;
            transform: translateX(-50%);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: #800000;
            text-decoration: none;
            z-index: 999;
            padding: 6px 14px;
            border-radius: 999px;
            transition: all 0.25s ease;
        }

        .auth-back-home:hover {
            background: rgba(128, 0, 0, 0.08);

        }

        /* ===== PILL INPUTS & BUTTONS OVERRIDE ===== */

        input:not([type="checkbox"]):not([type="radio"]),
        textarea,
        select {
            border-radius: 999px !important;
            padding-left: 36px !important;
        }

        /* Textarea thoda natural rakho */
        textarea {
            border-radius: 16px !important;
        }

        /* Theme buttons pill */
        .theme-btn,
        .theme-btn-primary,
        .theme-btn-secondary,
        .theme-btn-dark,
        .theme-btn-white,
        .theme-btn-outline-primary,
        .theme-btn-outline-secondary,
        .theme-btn-outline-dark,
        .theme-btn-outline-white {
            border-radius: 999px !important;
        }
    </style>
