 .auth-wrapper {
            display: flex;
        }

        /* ── LEFT PANEL ── */
        .auth-left {
            width: 480px;
            min-width: 420px;
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 35px;
            position: relative;
            z-index: 2;
        }

        .auth-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 35px;
        }

        .auth-logo img {
            width: 180px;
        }

        .auth-left h2 {
            font-size: 20px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 2px;
            letter-spacing: -0.5px;
        }

        .auth-left p.auth-sub {
            font-size: 12px;
            color: #8a8fa8;
            margin-bottom: 32px;
        }

        /* Form fields */
        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #3d3f52;
            margin-bottom: 4px;
        }

        .input-icon-wrap {
            position: relative;
        }

        .input-icon-wrap .icon1 {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #3f7af0;
            z-index: 1;
            font-size: 14px;
            pointer-events: none;
        }

        .form-control {
            width: 100%;
            height: 48px;
            border: 1.5px solid #e4e7f0;
            border-radius: 10px;
            padding: 0 42px 0 42px;
            font-size: 14px;
            font-family: "Ubuntu", sans-serif;
            color: #1a1a2e;
            background: #fafbff;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }

        .form-control::placeholder {
            color: #b5bace;
        }

        .form-control:focus {
            border-color: #3f7af0;
            box-shadow: 0 0 0 3px rgba(63, 122, 240, 0.10);
            background: #fff;
        }

        .form-control.is-invalid {
            border-color: #f05252;
        }

        .invalid-feedback {
            font-size: 12px;
            color: #f05252;
            margin-top: 5px;
        }

        /* Password toggle */
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #a0a5be;
            font-size: 15px;
            padding: 4px;
            line-height: 1;
        }

        .toggle-password:hover {
            color: #3f7af0;
        }

        /* Remember me */
        .remember-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 24px;
        }

        .remember-row input[type="checkbox"] {
            width: 17px;
            height: 17px;
            accent-color: #3f7af0;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .remember-row label {
            font-size: 14px;
            color: #3d3f52;
            cursor: pointer;
            line-height: 1.4;
        }

        .remember-row label span {
            display: block;
            font-size: 11.5px;
            color: #a0a5be;
            font-weight: 400;
        }

        /* Primary button */
        .btn-primary-custom {
            width: 100%;
            height: 48px;
            background: #3f7af0;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            font-family: "Ubuntu", sans-serif;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
            letter-spacing: 0.1px;
        }

        .btn-primary-custom:hover {
            background: #2b63d9;
            box-shadow: 0 4px 16px rgba(63, 122, 240, 0.28);
        }

        .btn-primary-custom:active {
            transform: scale(0.99);
        }

        /* Next button (same as primary) */
        #submit-next {
            margin-bottom: 12px;
        }

        /* OR divider */
        .or-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 22px 0 18px;
            color: #b5bace;
            font-size: 12px;
            font-weight: 500;
        }

        .or-divider::before,
        .or-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e4e7f0;
        }

        /* Signup link */
        .signup-link {
            text-align: center;
            font-size: 1px;
            color: #8a8fa8;
            margin-bottom: 16px;
        }

        .signup-link a {
            color: #3f7af0;
            font-weight: 600;
            text-decoration: none;
        }

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

        /* Social buttons */
        .btn-social {
            width: 100%;
            height: 46px;
            border-radius: 10px;
            border: 1.5px solid #e4e7f0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            font-family: "Ubuntu", sans-serif;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
            margin-bottom: 10px;
            color: #1a1a2e;
            text-decoration: none;
        }

        .btn-social:hover {
            border-color: #b5bace;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
            background: #fafbff;
        }

        .btn-social img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .btn-social.facebook {
            background: #1877f2;
            border-color: #1877f2;
            color: #fff;
        }

        .btn-social.facebook:hover {
            background: #1464d8;
        }

        .btn-social.twitter {
            background: #000;
            border-color: #000;
            color: #fff;
        }

        .btn-social.twitter:hover {
            background: #222;
        }

        /* Forgot password */
        .forgot-link {
            display: block;
            text-align: center;
            margin-top: 14px;
            font-size: 13px;
            color: #8a8fa8;
        }

        .forgot-link a {
            color: #3f7af0;
            text-decoration: none;
            font-weight: 500;
        }

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

        /* Secondary button (sign up as client) */
        .btn-secondary-custom {
            width: 100%;
            height: 48px;
            background: transparent;
            color: #3f7af0;
            border: 1.5px solid #3f7af0;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            font-family: "Ubuntu", sans-serif;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            margin-top: 10px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .btn-secondary-custom:hover {
            background: #3f7af0;
            color: #fff;
        }

        /* ── RIGHT PANEL ── */
        .auth-right {
            flex: 1;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: aliceblue;
            /* padding: 60px 48px; */
            position: relative;
            overflow: hidden;
        }

        .auth-right-content {
            text-align: center;
            max-width: 520px;
            position: relative;
            z-index: 1;
            height: stretch;
        }

        .auth-right-illustration {
            width: 340px;
            max-width: 90%;
            position: relative;
            z-index: 1;
        }

        /* Copyright */
        .auth-copyright {
            /* position: absolute;
                        bottom: 0px; */
            font-size: 12px;
            text-align: center;
            color: #b5bace;
        }

        .btn-with-loader {
            position: relative;
        }

        .btn-with-loader .btn-spin {
            align-items: center;
            justify-content: center;
        }

        .btn-with-loader.btn-loading .btn-label {
            visibility: hidden;
        }

        .btn-with-loader.btn-loading .btn-spin {
            display: inline-flex !important;
            position: absolute;
            inset: 0;
        }

        .auth-success-card {
            margin-top: 4px;
            padding: 22px 18px;
            border-radius: 16px;
            background: linear-gradient(180deg, #f4fbf7 0%, #eaf8ef 100%);
            border: 1px solid #d5f0df;
            text-align: center;
            box-shadow: 0 10px 24px rgba(32, 160, 93, 0.08);
        }

        .auth-success-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #20a05d 0%, #34c77a 100%);
            color: #fff;
            font-size: 24px;
            box-shadow: 0 10px 18px rgba(32, 160, 93, 0.22);
        }

        .auth-success-card h3 {
            margin: 0 0 8px;
            font-size: 18px;
            font-weight: 800;
            color: #164a2e;
        }

        .auth-success-text {
            margin: 0;
            font-size: 13px;
            line-height: 1.6;
            color: #4e6b5c;
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .auth-right {
                display: none;
            }

            .auth-left {
                width: 100%;
                min-width: unset;
                padding: 10px;
            }
        }

        /* Spinner */
        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
            border-width: .2em;
            display: inline-block;
            vertical-align: text-bottom;
            border: .2em solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: spinner-border .75s linear infinite;
        }

        @keyframes spinner-border {
            to {
                transform: rotate(360deg);
            }
        }

        .d-none {
            display: none !important;
        }

        #captcha_container {
            margin-bottom: 12px;
        }

        /* ── SLIDER ── */
        .slider-wrap {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.7s ease;
            border-radius: 16px;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            border-radius: 16px;
            display: block;
        }

        .slide-caption {
            position: absolute;
            bottom: 52px;
            left: 0;
            right: 0;
            text-align: center;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 0 20px;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
        }

        .slide-caption span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            opacity: 0.85;
            margin-top: 4px;
        }

        .dots {
            position: absolute;
            bottom: 12px;
            left: 7% !important;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
            z-index: 10;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d4d4d4;
            cursor: pointer;
            transition: background 0.3s, width 0.3s;
            border: none;
            padding: 0;
        }

        .dot.active {
            background: #3f7af0;
            width: 22px;
            border-radius: 4px;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.7s ease;
            border-radius: 16px;
            background-size: cover;
            background-repeat: no-repeat;
        }
