.register-wrapper {
        min-height: 100vh;
    }

    /* LEFT SIDE */
    .left-panel {
        background: #f3f8fe;
        padding: 60px;
    }

    .brand {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .brand span {
        color: #ff3d3d;
    }

    .left-panel h1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
    }

    .left-panel p {
        font-size: 18px;
        margin-top: 15px;
        color: #555;
    }

    .hero-img {
        margin-top: 50px;
        max-width: 100%;
    }

    /* RIGHT SIDE */
    .right-panel {
        background: #fff;
        border-radius: 20px 0 0 20px;
        padding: 60px;
    }

    .right-panel h3 {
        font-weight: 700;
        margin-bottom: 30px;
    }

    .form-control {
        height: 50px;
        border-radius: 10px;
    }

    .form-label {
        font-weight: 500;
    }

    .whatsapp-box {
        background: #f1f9ff;
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .register-btn {
        background: #ff3d3d;
        border: none;
        border-radius: 30px;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
    }

    .register-btn:hover {
        background: #e63636;
    }

    .terms {
        font-size: 13px;
        margin-top: 15px;
        color: #666;
    }

    .terms a {
        color: #ff3d3d;
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .left-panel {
            text-align: center;
            padding: 40px;
        }

        .right-panel {
            border-radius: 0;
        }
    }