
        /* Video - exact 50% */
        .video-side {
            flex: 0 0 50%!important;
            width: 50% !important;
        }

        /* Form - exact 50% */
        .login-container {
            flex: 0 0 50%!important;
            width: 50% !important;
        }
  .main-container {
            display: flex;
            align-items: stretch;
            min-height: 100vh;
            background: #f5f7ff;
            font-family: 'Nunito', sans-serif;
        }

        /* ── LEFT VIDEO SIDE ── */
        .video-side {
            flex: 1.1;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 36px;
            min-height: 100vh;
        }

        .video-side::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .video-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }

      .video-wrapper {
    width: 100%;
    max-width: 506px !important;
    margin: 0 auto 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 2.5px solid rgba(255, 102, 0, 0.5);
    box-shadow: 0 8px 40px rgba(255, 102, 0, 0.2);
}

        .video-wrapper video,
        .video-wrapper iframe {
            width: 100%;
            height: 370px !important;
            display: block;
            object-fit: fill;
            border: none;
        }

        .video-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .video-title span {
            color: #ff6600;
        }

        .video-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            max-width: 340px;
            margin: 0 auto 24px;
        }

        .trust-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.8);
            font-size: 11px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .trust-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ff6600;
            border-radius: 50%;
            display: inline-block;
        }

        /* ── RIGHT FORM SIDE ── */
        .login-container {
            flex: 1;
            background: #fff;
            padding: 40px 36px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-title {
            text-align: center;
            margin-bottom: 10px;
        }

        .logo-circle {
            display: inline-block;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ff6600;
            box-shadow: 0 4px 20px rgba(255, 102, 0, 0.2);
        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .login-subtitle {
            text-align: center;
            font-size: 14px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .form-label-divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .form-label-divider::before,
        .form-label-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
        }

        .form-label-divider span {
            font-size: 12px;
            color: #ff6600;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .input-group {
            margin-bottom: 14px;
        }

        .input-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #444;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .input-group input {
            width: 100%;
            height: 42px;
            border: 1.5px solid #e8e8e8;
            border-radius: 8px;
            padding: 0 14px;
            font-size: 13.5px;
            color: #333;
            background: #fafafa;
            transition: border-color 0.2s, background 0.2s;
            outline: none;
            font-family: 'Nunito', sans-serif;
        }

        .input-group input:focus {
            border-color: #ff6600;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.08);
        }

        .input-group input::placeholder {
            color: #bbb;
            font-size: 13px;
        }

        .two-col-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .options {
            margin: 12px 0 16px;
        }

        .options label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: #555;
            cursor: pointer;
        }

        .options input[type="checkbox"] {
            width: 15px;
            height: 15px;
            accent-color: #ff6600;
            cursor: pointer;
        }

        .login-btn {
            width: 100%;
            height: 46px;
            background: #ff6600;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Nunito', sans-serif;
        }

        .login-btn:hover {
            background: #e05500;
        }

        .login-btn:active {
            transform: scale(0.98);
        }

        @media (max-width: 820px) {
         

            .video-side {
                min-height: auto;
                padding: 36px 24px;
            }

            .login-container {
                padding: 32px 24px;
            }

            .two-col-inputs {
                grid-template-columns: 1fr;
            }
        }
    