     .sf-container {
            display: flex;
            width: 100%;
            max-width: 1000px;
            min-height: 550px;
            border-radius:20px;
            overflow: hidden;
            box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease-out;
            margin:25px auto;
        }

        .sf-image-section {
            flex: 1;
            background: linear-gradient(135deg, #f8f4ea 0%, #e9dfc7 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .sf-image-content {
            text-align: center;
            color: #333333;
            z-index: 2;
            position: relative;
            animation: slideInFromLeft 1s ease-out;
        }

        .sf-image-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 700;
            color: #a88738;
        }

        .sf-image-content p {
            font-size: 16px;
            color: #777777;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .sf-image-placeholder {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #f0e9d5 0%, #e2d5b8 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(199, 160, 73, 0.2);
            position: relative;
            overflow: hidden;
        }

        .sf-image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1623428187961-665e9c2d1f62?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
            opacity: 0.9;
            border-radius: 20px;
        }

        .sf-image-placeholder i {
            font-size: 60px;
            color: #C7A049;
            position: relative;
            z-index: 2;
            background-color: rgba(255, 255, 255, 0.8);
            /* padding: 20px; */
            border-radius: 50%;
        }
        .sf-image-placeholder img{
            height:100%;
            width:100%;
            object-fit: cover;
            padding: 10px;
        }

        .sf-features {
            text-align: left;
            max-width: 300px;
            margin: 0 auto;
        }

        .sf-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            padding: 5px;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .sf-feature-item:hover {
            background-color: rgba(199, 160, 73, 0.1);
            transform: translateX(5px);
        }

        .sf-feature-item i {
            color: #C7A049;
            margin-right: 10px;
            font-size: 18px;
            width: 24px;
            text-align: center;
        }

        .sf-form-section {
            flex: 1;
            background-color: #ffffff;
            padding: 40px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .sf-form-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .sf-form-header h2 {
            font-size: 32px;
            color: #333333;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .sf-form-header p {
            color: #777777;
            font-size: 16px;
        }

        .sf-form-group {
            margin-bottom: 10px;
            position: relative;
        }

        .sf-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333333;
        }

        .sf-input-group {
            position: relative;
        }

        .sf-input-group input {
            width: 100%;
            padding: 12px 50px 12px 10px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #fafafa;
        }

        .sf-input-group input:focus {
            border-color: #C7A049;
            box-shadow: 0 0 0 3px rgba(199, 160, 73, 0.15);
            outline: none;
            background-color: white;
        }

        .sf-input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777777;
            font-size: 18px;
        }

        .sf-password-toggle {
            cursor: pointer;
            transition: color 0.3s;
        }

        .sf-password-toggle:hover {
            color: #C7A049;
        }

        .sf-btn {
            background: linear-gradient(135deg, #C7A049, #a88738);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .sf-btn:hover {
            background: linear-gradient(135deg, #a88738, #C7A049);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(199, 160, 73, 0.3);
        }

        .sf-btn:active {
            transform: translateY(-1px);
        }

        .sf-btn i {
            margin-right: 8px;
        }

        .sf-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .sf-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        .sf-divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
        }

        .sf-divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #eee;
        }

        .sf-divider span {
            background-color: white;
            padding: 0 15px;
            color: #777777;
            font-size: 14px;
        }

        .sf-social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .sf-social-btn {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .sf-social-btn:hover {
            border-color: #C7A049;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sf-social-btn i {
            font-size: 18px;
            margin-right: 8px;
        }

        .sf-social-btn.google i {
            color: #DB4437;
        }

        .sf-social-btn.facebook i {
            color: #4267B2;
        }

        .sf-form-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
            color: #777777;
        }

        .sf-form-footer a {
            color: #C7A049;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .sf-form-footer a:hover {
            color: #a88738;
            text-decoration: underline;
        }

        .sf-back-link {
            position: absolute;
            top: 30px;
            left: 40px;
            color: #C7A049;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .sf-back-link:hover {
            color: #a88738;
            transform: translateX(-5px);
        }

        .sf-back-link i {
            margin-right: 5px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sf-container {
                flex-direction: column;
                max-width: 500px;
            }
            
            .sf-image-section {
                padding: 25px 15px;
            }
            
            .sf-form-section {
                padding: 30px 30px;
            }
            
            .sf-social-login {
                flex-direction: column;
            }
            
            .sf-image-placeholder {
                width: 100px;
                height: 100px;
            }
        }