
        
        .form-section {
            padding: 9rem 1rem;
        }
        
        .form-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }
        
        .form-row {
            display: flex;
            flex-direction: column;
        }
        
        .form-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .form-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
        }
        
        .form-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .form-content {
            padding: 3rem;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .floating-input {
            width: 100%;
            padding: 1rem 1rem 0.5rem 1rem;
            border: none;
            border-bottom: 2px solid #e2e8f0;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .floating-input:focus {
            border-bottom-color: #3b82f6;
        }
        
        .floating-label {
            position: absolute;
            left: 1rem;
            top: 1rem;
            color: #64748b;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        
        .floating-input:focus + .floating-label,
        .floating-input:not(:placeholder-shown) + .floating-label {
            transform: translateY(-1.5rem);
            font-size: 0.75rem;
            color: #3b82f6;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, #3b82f6, #2563eb);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .alert {
            position: fixed;
            bottom: 4rem;
            right: 2rem;
            padding: 1rem;
            border-radius: 0.5rem;
            display: none;
        }
        
        .alert-success {
            background-color: #ecfdf5;
            border: 1px solid #10b981;
            color: #065f46;
        }
        
        .alert-error {
            background-color: #fee2e2;
            border: 1px solid #ef4444;
            color: #991b1b;
        }
        
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        
        @media (min-width: 1024px) {
            .form-row {
                flex-direction: row;
            }
            
            .form-image {
                width: 50%;
                height: auto;
            }
            
            .form-content {
                width: 50%;
            }
        }