
        body,
        html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: #fff;
        }

        /* Split screen */
        .container-fluid {
            height: 100vh;
            display: flex;
            justify-content: center;
            overflow: hidden;
            padding: 0;
        }

        /* Left side - Doctor Image */
        .left-panel {
            flex: 1;
            background:  url(../../assets/images/eldery_treatment_05.jpg) center center/cover no-repeat;

            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: 100%;
        }

        .left-text {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 80%;
            display: none;
        }

        .left-text h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: .5rem;
        }

        .left-text p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Right side - Login card */
        .right-panel {
            flex: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            background: url('images/pharmacist-day-celebration-with-male-pharmacist.jpg') right top/cover no-repeat;
            position: relative;
            box-shadow: inset 0 0 100px rgba(0, 119, 255, 0.1);
        }

        .right-panel:after {
            background: rgb(199 199 199 / 45%);
            position: absolute;
            inset: 0;
            content: "";
            top: 0;
            height: 100vh;
            background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 255 255 / 82%) 50%, rgb(255 255 255 / 38%) 100%);
            opacity: 0.9;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
            border: 1px solid rgba(0, 119, 255, 0.15);
            position: relative;
            z-index: 10;
            transition: all 0.4s ease;
        }

        .login-card h2 {
            font-weight: 700;
            font-size: 1.8rem;
            color: #004080;
            text-align: center;
        }

        .login-card p {
            text-align: center;
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 1.8rem;
        }

        .input-group-text {
            background: #eaf4ff;
            border: none;
            color: #0077ff;
        }

        .form-control {
            border: none;
            background: #f6f9ff;
            box-shadow: none;
            outline: 0;
        }

        .form-control:focus {
            background: #fff;
            border: 1px solid #0077ff2b;
            outline: 0;
            box-shadow: 0 0 4px transparent;
        }

        .btn-login {
            background: linear-gradient(90deg, #0077ff, #00c6ff);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            height: 45px;
            color: #fff;
            transition: 0.3s ease;
        }

        .btn-login:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .form-check-label {
            color: #444;
        }

        .bottom-text {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 1.5rem;
        }

        .bottom-text a {
            color: #0077ff;
            font-weight: 600;
            text-decoration: none;
        }

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

        .logo2 {
            position: absolute;
            left: 15px;
            top: 15px;
            z-index: 100;
        }

        /* Simple fade transition for switching forms */
        .fade-switch {
            animation: fadeIn 0.4s ease;
        }

        .alert.alert-danger.py-2.px-3.mb-3 {
            font-size: 13px;
            padding: 18px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile */
        @media (max-width: 992px) {
            .container-fluid {
                flex-direction: column;
            }

            .left-panel {
                height: 40vh;
            }

            .right-panel {
                flex: 1;
                width: 100%;
                padding: 1rem;
            }
        }

        input.form-control {
            border: 1px solid #eaf4ff !important;
            border-left: 0px !important;
            font-size: 14px;
        }

        .form-label {
            margin-bottom: .5rem;
            FONT-SIZE: 14px;
        }

        .d-flex.justify-content-between.align-items-center.mb-3 {
            font-size: 14px;
        }

        #toast-container>div {
            opacity: 1 !important;
        }

        #toast-container>div:hover {
            opacity: 1 !important;
        }

