        /* body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            min-height: 100vh;
            overflow-x:hidden;
        } */

        .main-container {
            max-width: 1200px;
            margin: 10rem auto 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .left-section {
            background: #f0f0f0;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

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

        .logo-icon {
            width: 50px;
            height: 50px;
            background: #00bcd4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 12px;
            background: #00bcd4;
            border-radius: 2px;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: -8px;
            left: 35%;
            width: 3px;
            height: 8px;
            background: #00bcd4;
            border-radius: 2px;
        }

        .logo-icon i {
            color: white;
            font-size: 24px;
        }

        .logo-text {
            font-size: 32px;
            font-weight: bold;
            color: #00bcd4;
            letter-spacing: 2px;
        }

        .social-btn {
            width: 100%;
            max-width: 300px;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: white;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .facebook-btn {
            background: #3b5998;
        }

        .facebook-btn:hover {
            background: #2d4373;
        }

        .pinterest-btn {
            background: #bd081c;
        }

        .pinterest-btn:hover {
            background: #8c0615;
        }

        .couple-image {
            width: 100%;
            max-width: 400px;
            margin-top: 30px;
            border-radius: 10px;
        }

        .or-badge {
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: #FFCC66;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 18px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .right-section {
            background: #3a3a3a;
            padding: 60px 50px;

        }

        .register-title {
            color: white;
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .register-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #FFCC66;
        }

        .form-control, .form-select {
            background: transparent;
            border: 1px solid #666;
            border-radius: 5px;
            padding: 12px 15px;
            color: white;
            margin-bottom: 20px;
        }

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

        .form-control:focus, .form-select:focus {
            background: transparent;
            border-color: #FFCC66;
            color: white;
            box-shadow: none;
        }

        .form-select {
            color: #999;
        }

        .form-select option {
            background: #3a3a3a;
            color: white;
        }

        .form-check {
            margin: 25px 0;
        }

        .form-check-input {
            background-color: transparent;
            border-color: #666;
            cursor: pointer;
        }

        .form-check-input:checked {
            background-color: #FFCC66;
            border-color: #FFCC66;
        }

        .form-check-label {
            color: white;
            font-size: 14px;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #FFCC66;
            border: none;
            border-radius: 50px;
            color: #000;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 184, 0, 0.3);
        }

        @media (max-width: 768px) {
            .or-badge {
                right: 50%;
                top: auto;
                bottom: -30px;
                transform: translateX(50%);
            }

            .right-section {
                background: #3a3a3a;
                padding: 60px 20px;

            }
        }