        /* --- LAYOUT STYLES --- */
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
            display: flex;
        }

        .brand-panel {
            flex: 1;
            background: linear-gradient(135deg, #262C81 0%, #6c5ce7 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .brand-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../../img/photo-1531415074968-036ba1b575da.avif'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
        }

        .auth-panel {
            flex: 1;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            overflow-y: auto;
        }

        .auth-form-container {
            width: 100%;
            max-width: 400px;
        }

        .auth-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .auth-header p {
            color: #64748b;
            font-size: 15px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            transition: all 0.2s;
            outline: none;
            background: #f8fafc;
            box-sizing: border-box;
        }

        .form-input:focus {
            border-color: #6c5ce7;
            background: white;
            box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
        }

        .btn-login {
            width: 100%;
            padding: 14px;
            background: #262C81;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 5px;
        }

        .btn-login:hover {
            background: #1e236b;
            transform: translateY(-1px);
        }

        /* --- NEW GOOGLE BUTTON STYLE (Image Match) --- */
        .divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: #94a3b8;
            font-size: 13px;
            font-weight: 500;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #e2e8f0;
        }

        .divider::before {
            margin-right: 15px;
        }

        .divider::after {
            margin-left: 15px;
        }

        .btn-google {
            width: 100%;
            padding: 12px 16px;
            background: #ffffff;
            color: #1f1f1f;
            /* Dark Grey Text */
            /* Image jaisa Blue Border */
            border: 1px solid #4285f4;
            border-radius: 4px;
            /* Image jaisa corner radius */
            font-weight: 500;
            font-size: 16px;
            /* Text size adjust kiya */
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            /* Logo aur Text ke beech gap */
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
            /* Ya Roboto agar installed hai */
        }

        .btn-google:hover {
            background: #f8fbff;
            /* Hover par halka sa blue tint */
            box-shadow: 0 1px 3px rgba(66, 133, 244, 0.3);
            /* Halka shadow */
        }

        .btn-google:active {
            background: #e8f0fe;
            transform: translateY(1px);
        }

        .auth-footer {
            margin-top: 25px;
            text-align: center;
            font-size: 14px;
            color: #64748b;
        }

        .auth-footer a {
            color: #6c5ce7;
            text-decoration: none;
            font-weight: 600;
        }

        .forgot-link {
            display: block;
            text-align: right;
            margin-top: -10px;
            margin-bottom: 20px;
            font-size: 12px;
            color: #64748b;
            text-decoration: none;
        }

        .forgot-link:hover {
            color: #6c5ce7;
            text-decoration: underline;
        }

        .password-toggle-icon {
            position: absolute;
            right: 15px;
            top: 38px;
            color: #94a3b8;
            cursor: pointer;
            font-size: 18px;
            z-index: 10;
        }

        .password-toggle-icon:hover {
            color: #6c5ce7;
        }

        /* Popup */
        .custom-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .custom-modal.active {
            display: flex;
            animation: popupFadeIn 0.3s ease;
        }

        .custom-modal-box {
            background: white;
            width: 90%;
            max-width: 400px;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .popup-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .popup-error .popup-icon-circle {
            background: #fee2e2;
            color: #ef4444;
        }

        .popup-success .popup-icon-circle {
            background: #dcfce7;
            color: #10b981;
        }

        .popup-btn {
            background: #262C81;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
        }

        @keyframes popupFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .brand-panel {
                display: none;
            }
        }