  .register-wrapper {
            height: 100vh;
            display: flex;
            overflow: hidden;
        }

        /* LEFT FORM AREA */
        .register-left {
            width: 45%;
            background: var(--color-cream);
            padding: 70px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-card {
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(12px);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--color-border);
            box-shadow: 0 8px 20px rgb(0 0 0 / 12%);
        }

        .register-left h2 {
            font-weight: 700;
            color: var(--color-brown);
            margin-bottom: 15px;
        }

        /* INPUTS */
        .form-control {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--color-border);
        }

        /* BUTTONS */
        .btn-register {
            background: var(--color-haldi);
            color: #fff;
            font-size: 17px;
            padding: 12px;
            border-radius: 8px;
            width: 100%;
            border: none;
            transition: .3s;
        }

        .btn-register:hover {
            background: var(--color-haldi-dark);
        }

        .btn-login {
            background: transparent;
            border: 2px solid var(--color-haldi);
            color: var(--color-haldi-dark);
            padding: 10px;
            width: 100%;
            border-radius: 8px;
            margin-top: 10px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-login:hover {
            background: var(--color-haldi);
            color: #fff;
        }

        /* RIGHT FULL BACKGROUND IMAGE */
        .register-right {
            width: 55%;
            background: url('assets/img/register-bg.jpg');
            background-size: cover;
            background-position: center;
        }

        /* RESPONSIVE */
        @media(max-width: 992px) {
            .register-wrapper {
                flex-direction: column;
            }

            .register-left, .register-right {
                width: 100%;
            }

            .register-right {
                height: 40vh;
            }
        }
        .register-right {
            display: flex;
            justify-content: center;   /* Horizontal center */
            align-items: center;        /* Vertical center */
            background: var(--color-cream);
        }

        .register-right img {
            width: 60%; 
            height: auto;
            object-fit: contain;
        }